我有2x2矩陣中的4個按鈕。讓他們成爲b11 b12 b21 b22。android如何實現這個佈局
我想對齊的
______________________________
| |
| b11 b12 |
| b21 b22 |
|____________________________|
其中B11右邊緣與B12的左EGDE比賽佈局的中心左邊緣匹配B12的 B21的右邊緣匹配B11的右邊緣與B22的左邊緣
我有2x2矩陣中的4個按鈕。讓他們成爲b11 b12 b21 b22。android如何實現這個佈局
我想對齊的
______________________________
| |
| b11 b12 |
| b21 b22 |
|____________________________|
其中B11右邊緣與B12的左EGDE比賽佈局的中心左邊緣匹配B12的 B21的右邊緣匹配B11的右邊緣與B22的左邊緣
你要知道這是不是100%正確的代碼,只是想法,我懶打字出來的android:layout_width和高度的7倍
<LinearLayout vertical>
<LinearLayout Horizontal>
<view layout_width="0px" weight="1"/>
<view layout_width="0px" weight="1"/>
</linearlayout>
<LinearLayout Horizontal>
<view layout_width="0px" weight="1"/>
<view layout_width="0px" weight="1"/>
</linearlayout>
</LinearLayout>
這是手 - 波浪和無代碼,但我會創建一個LinearLayout,其中包含2個按鈕的每一行。將LinearLayout的引力設置爲居中,將寬度設置爲wrap_content,然後將按鈕的寬度設置爲相等。重複第二行。
我無法指定按鈕的寬度。他們必須由文本的長度決定 – pankajagarwal
然後設置重量爲1兩個按鈕和寬度爲0下降 – ingsaurabh
嘗試使用此:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center">
<Button android:text="B11" android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="B12" android:id="@+id/button3" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</LinearLayout>
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center">
<Button android:text="B21" android:id="@+id/button2" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<Button android:text="B22" android:id="@+id/button4" android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</LinearLayout>
</LinearLayout>
我認爲這是你想要的。
謝謝,工作,雖然我需要設置寬度使用minEms和每個按鈕的重力 – pankajagarwal