我目前正忙着用android和製作一點測試應用程序來嘗試編碼。我確信有一個簡單的方法可以做到這一點,但我無法弄清楚。我想要兩個按鈕位於屏幕的底部。但是,我想要一個在左側,一個在右側,中間有空格。在Android(xml)中並排匹配父母的兩個按鈕
感謝您的幫助
我目前正忙着用android和製作一點測試應用程序來嘗試編碼。我確信有一個簡單的方法可以做到這一點,但我無法弄清楚。我想要兩個按鈕位於屏幕的底部。但是,我想要一個在左側,一個在右側,中間有空格。在Android(xml)中並排匹配父母的兩個按鈕
感謝您的幫助
這個可能嗎?
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id"@+id/left_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="Left"/>
<Button
android:id"@+id/right_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Right"/>
</RelativeLayout>
你可以做,使用任一LinearLayout
,TableLayout
或RelativeLayout
。 Try it ......這並不難。
創建一個線性佈局
編輯您的新的線性佈局(您linerlayout這是默認創建的,當你創建佈局內)
android:layout_gravity="bottom"
android:orientation="horizontal"
android:gravity="center"
添加里面的LinearLayout兩個按鈕(加文字/大小也)
可選:添加兩個按鈕margin_layout:10dip
android:layout_margin="10dip"
這應該做的。
你需要給機器人:layout_alignParentLeft = 「true」 以左對齊和android:layout_alignParentRight = 「true」 以右對齊。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id"@+id/left_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Left"/>
<Button
android:id"@+id/right_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:text="Right"/>
</RelativeLayout>
thaaaaank你這是android:文本,我不記得我知道有一個簡單的方法只是不記得語法 – Jonathan