android layout

来源:互联网 发布:阿芙面膜好用吗 知乎 编辑:程序博客网 时间:2024/05/22 04:56


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    <RelativeLayout
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:layout_marginBottom="0dip"
     android:background="#56A2D3"
     android:orientation="horizontal"
        >
      <ImageButton
          android:id="@+id/back"
          android:layout_width="wrap_content"
          android:layout_height="50dp"
          android:text="上一步"
          android:src="@drawable/set"
   />

      <TextView
          android:id="@+id/textview1"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerInParent="true"
          android:layout_weight="1"
          android:text="ParkClient"
          android:textSize="18sp"/>
     
      <TextView
          android:id="@+id/textview2"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_centerVertical="true"
          android:layout_alignParentRight="true"
          android:layout_marginRight="10dp"
          android:text="下一步" 
          android:textSize="18sp"/>
       
   </RelativeLayout>

   <LinearLayout
       android:layout_width="match_parent"
       android:layout_height="wrap_content"
       android:layout_alignParentBottom="true">
      
     <Button
         android:id="@+id/button1"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_weight="1"
         android:layout_alignParentBottom="true"
         android:layout_alignParentLeft="true"
         android:text="Button" />
 
     <Button
         android:id="@+id/button2"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_weight="1"
         android:layout_alignParentBottom="true"
         android:layout_alignParentRight="true"
         android:text="Button" />
    </LinearLayout>

</RelativeLayout>

0 0
原创粉丝点击