2010-11-22 84 views
3

我想分我的屏幕分爲兩個部分,我有一個LinearLayout並再次將其包含兩個LinearLayoutsAndroid的佈局分割

如何劃分這兩個LinearLayouts分成相等的兩部分?

+0

剛剛看了您的回覆答案。讓我知道..你想如何劃分他們?垂直(堆疊在彼此的頂部)或水平(出現在彼此的側面)? – kishu27 2012-03-23 12:20:13

回答

8

只需添加:

android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:layout_weight="1" 

他們兩個。相等的layout_weight參數均勻分配空間量。

上接受一些答案到你前面的問題,以及工作。

+0

HI感謝您的解決方案,但我不能讓兩個佈局劃分,我已經硬編碼了layout_width價值爲200px,我不想做這樣的,請建議用例子 – ramsbh 2010-11-22 07:38:17

+0

這是你怎麼做。如果你想硬編碼你的寬度,那麼它當然不會縮放到50%。將其更改爲fill_parent。 – kcoppock 2010-11-22 13:38:19

0

檢查這個例子可以幫助你。

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
    android:id="@+id/rootlinearlayout" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:orientation="vertical" 
    xmlns:android="http://schemas.android.com/apk/res/android"> 
    <LinearLayout 
     android:id="@+id/linearlayout01" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:orientation="vertical"> 
     <EditText 
      android:id="@+id/et01" 
      android:gravity="center" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="First TextBox" 
      android:textSize="18sp" /> 
    </LinearLayout> 
    <LinearLayout 
     android:id="@+id/linearlayout02" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:orientation="vertical"> 
     <EditText 
      android:id="@+id/et02" 
      android:gravity="center" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:text="Another TextBox" 
      android:textSize="18sp" /> 
    </LinearLayout> 
</LinearLayout> 
+0

嗨,感謝您的答覆,我想分成垂直的兩個畫面,我用你的代碼中,「AnotherTextbox」是「第一個文本框」後非常快到了,我想50%的第一和50 %到second.Any建議? – ramsbh 2010-11-22 08:54:27

+0

在兩個EditText中嘗試android:layout_height =「match_parent」。這應該很好。 – 2010-11-22 09:17:42

1

正常情況下,我使用android:layout_weight =「1」。你也可以使用表格佈局。

0

我們可以使用 android:layout_width="0dp"android:layout_weight="1"兩個片段 的和這些家長,我們可以使用android:layout_width="fill_parent"