zoukankan      html  css  js  c++  java
  • 布局代码

     actvitiy_main:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <android.support.v4.view.ViewPager
    android:id="@+id/id_viewpage"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1" >
    </android.support.v4.view.ViewPager>
    "

    <include layout="@layout/button" />

    </LinearLayout>

    button:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="60dp"
    android:background="@drawable/bottom_bar"
    android:orientation="horizontal" >

    <LinearLayout
    android:id="@+id/id_tab_weixin"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="vertical" >
    <!-- android:clickable="false" 是为了防止ImageButton截取了触摸事件 ,这里事件要给它的上一级linearlayout-->
    <ImageButton
    android:id="@+id/id_tab_weixin_img"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#00000000"
    android:clickable="false"
    android:src="@drawable/homepage3" />

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="主页"
    />
    </LinearLayout>

    <LinearLayout
    android:id="@+id/id_tab_address"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="vertical" >

    <ImageButton
    android:id="@+id/id_tab_address_img"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#00000000"
    android:clickable="false"
    android:src="@drawable/game2" />

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="游戏"
    />
    </LinearLayout>

    <LinearLayout
    android:id="@+id/id_tab_frd"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="vertical" >

    <ImageButton
    android:id="@+id/id_tab_frd_img"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#00000000"
    android:clickable="false"
    android:src="@drawable/design2" />

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="设置"
    />
    </LinearLayout>

    <LinearLayout
    android:id="@+id/id_tab_settings"
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:gravity="center"
    android:orientation="vertical" >

    <ImageButton
    android:id="@+id/id_tab_settings_img"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="#00000000"
    android:clickable="false"
    android:src="@drawable/about2" />

    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="关于"
    />
    </LinearLayout>

    </LinearLayout>

    fragment_main:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.shit.MainActivity$PlaceholderFragment" >

    </RelativeLayout>

    operashscreen:

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ffffff"
    tools:context="com.example.shit.OperationActivity"
    tools:ignore="MergeRootFrame" >

    <Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:layout_marginLeft="23dp"
    android:layout_marginTop="39dp"
    android:text="开始" />

    <Button
    android:id="@+id/button2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/button1"
    android:layout_alignBottom="@+id/button1"
    android:layout_centerHorizontal="true"
    android:text="确定" />

    <Button
    android:id="@+id/button3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/button2"
    android:layout_alignBottom="@+id/button2"
    android:layout_marginLeft="24dp"
    android:layout_toRightOf="@+id/button2"
    android:text="退出" />

    <TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/editText3"
    android:layout_alignBottom="@+id/editText3"
    android:layout_alignLeft="@+id/button1"
    android:text="成绩:" />

    <EditText
    android:id="@+id/editText2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/button1"
    android:layout_below="@+id/button1"
    android:layout_marginTop="48dp"
    android:ems="10"
    android:textSize="10sp" >

    <requestFocus />
    </EditText>

    <EditText
    android:id="@+id/editText1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/editText2"
    android:layout_alignBottom="@+id/editText2"
    android:layout_alignRight="@+id/button3"
    android:ems="10"
    android:textSize="10sp" />

    <EditText
    android:id="@+id/editText3"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/editText2"
    android:layout_marginTop="25dp"
    android:layout_toRightOf="@+id/button1"
    android:ems="10"
    android:textSize="10sp" />

    <Chronometer
    android:id="@+id/chronometer1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:layout_toLeftOf="@+id/editText1"
    android:text="Chronometer" />

    </RelativeLayout>

    <!--
    android:gravity是对元素本身说的,元素本身的文本显示在什么地方靠着换个属性设置,不过不设置默认是在左侧的。
    android:layout_gravity是相对与它的父元素说的,说明元素显示在父元素的什么位置
    -->
    <LinearLayout android:id="@+id/LinearLayout01"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:gravity="center|center"
    android:background="#ffffff"
    android:orientation="vertical">
    <!--
    android:scaleType是控制图片如何resized/moved来匹对ImageView的size
    CENTER_INSIDE / centerInside 将图片的内容完整居中显示,通过按比例缩小或原来的size使得图片长/宽等于或小于View的长/宽
    -->
    <ImageView android:layout_marginTop="-60dip"
    android:paddingLeft="20dip"
    android:paddingRight="20dip"
    android:scaleType="centerInside"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/wordpress_logo"
    android:src="@drawable/welcome">
    </ImageView>
    <!--
    android:typeface 字体风格
    -->
    <TextView android:text="@+id/TextView01"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dip"
    android:typeface="serif"
    android:shadowDx="0"
    android:shadowDy="2"
    android:shadowRadius="1"
    android:shadowColor="#FFFFFF"
    android:textColor="#444444"
    android:textSize="20dip"
    android:id="@+id/versionNumber"
    android:gravity="bottom">
    </TextView>
    </LinearLayout>

    tab01:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/inbackground"
    android:gravity="center"
    android:orientation="vertical" >


    <ImageButton
    android:id="@+id/in"
    android:layout_width="66dp"
    android:layout_height="96dp"
    android:src="@drawable/play" />

    </LinearLayout>

    tab02:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    android:background="#ffffff" >
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="I'm Talent dog"
    android:layout_centerVertical="true"
    android:textColor="#000000"
    android:textSize="40sp"
    android:textStyle="bold"
    />

    </LinearLayout>

    tab03:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    android:background="#ffffff" >
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="I'm Talent dog"
    android:layout_centerVertical="true"
    android:textColor="#000000"
    android:textSize="40sp"
    android:textStyle="bold"
    />

    </LinearLayout>

    tab04:

    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical"
    android:background="#ffffff" >
    <TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="talent dog wang wang wang!"
    android:layout_centerVertical="true"
    android:textColor="#000000"
    android:textSize="40sp"
    android:textStyle="bold"
    />

    </LinearLayout>

  • 相关阅读:
    poj 1182食物链
    几何原本查询程序1.0
    code forces 548C:Mike and frog
    CC2530串口通信
    CC2530定时器的应用
    CC2530应用——按键控制灯光状态变化
    步入LTE、多址技术
    定时器之基于模模式的间隔定时
    CC2530定时器
    配置路由器(1)
  • 原文地址:https://www.cnblogs.com/42chenzhipeng/p/5059809.html
Copyright © 2011-2022 走看看