如果您想使用的LinearLayout的子視圖(按鈕)的父母,並希望有在雙面角落都按鈕,然後像下面代碼更新:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/back_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:text="@string/hello_world"
android:contentDescription="LeaveReq_back_button" />
<View android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_weight="1"/>
<Button
android:id="@+id/logout_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="logout_button"
android:gravity="right" />
</LinearLayout>
如果允許使用的LinearLayout到RelativeLayout的更新父那麼你可以像下面這樣更新它:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/back_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:background="@drawable/new_back_button"
android:contentDescription="@string/LeaveReq_back_button" />
<Button
android:id="@+id/logout_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/back_button"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:background="@drawable/logout"
android:contentDescription="@string/logout_button" />
</RelativeLayout>
現在它取決於你,你如何使用它。
享受編碼... :)
查看我的回答低於 – 2015-02-23 10:25:58