如何使用RelativeLayout
在Android
中獲得此佈局?無論我嘗試什麼,前2個按鈕都不會按預期顯示。下面我提供了我想要的東西,我嘗試的東西以及我的嘗試輸出的截圖。請任何人都可以幫助我?謝謝。如何在Android中實現這種佈局?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f5f5f5"
tools:context=".MainActivity" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="Button" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/button3"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/button1"
android:text="Button" />
</RelativeLayout>
更新時間:
任何幫助深表感謝。
爲什麼使用'RelativeLayout'?你可以很容易地用一個外部垂直'LinearLayout'來實現,這個'LinearLayout'包含一個用於按鈕1和2的水平'LinearLayout',然後是按鈕3和按鈕4.只需將'layout_weight'設置爲水平LinearLayout的1/8/1;按鈕3/4分別。 – Squonk 2015-02-24 15:27:40