我有兩種佈局。其實5,3垂直一個在另一個之下,在中間一個我有2個並排佈局。我需要他們是固定的大小,所以他們會改變。但是,只要我按下其中一個按鈕,它們就會改變大小,如下圖所示。如何讓他們不變?無論如何,這是我的代碼和圖片。如何製作固定的XML佈局?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="20" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="3" >
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="15"
android:orientation="horizontal" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1" >
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:layout_weight="1" >
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_weight="2" >
</LinearLayout>
</LinearLayout>
這工作了水平移動,它是固定的,但它還是挺大的verticaly。 – user2083882 2013-03-18 14:39:03
查看編輯,我添加了第二個選項 – Sababado 2013-03-18 15:13:57