android两个控件中部居中xml

来源:互联网 发布:泰牛程序员2017全套 编辑:程序博客网 时间:2024/06/05 10:55
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
   <LinearLayout 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >


  </LinearLayout>


   <RelativeLayout
       android:layout_width="fill_parent"
       android:layout_height="fill_parent"
       android:layout_gravity="center"
       android:orientation="horizontal" >


       <ImageButton
           android:id="@+id/select_park"
           android:layout_width="80dp"
           android:layout_height="120dp"
           android:layout_alignParentLeft="true"
           android:layout_centerVertical="true"
           android:layout_marginLeft="82dp"
           android:background="@drawable/park_car" />


       <ImageButton
           android:id="@+id/select_fetch"
           android:layout_width="80dp"
           android:layout_height="120dp"
           android:layout_centerVertical="true"
           android:layout_toRightOf="@+id/select_park"
           android:background="@drawable/fetch_car" />


   </RelativeLayout>


</LinearLayout>
0 0
原创粉丝点击