我對垂直線性佈局中的重量感到困惑。我可以很好地在水平線性佈局中使用重量,但是如何在垂直線性佈局中使用它。我有一個相對佈局,其中包含具有文本視圖和文本字段的內襯布局(垂直)。我需要以下安排。 垂直線性佈局中的重量
紅線=相對佈局,綠線=線性佈局(垂直),藍色= TextView的,黃色= texfields
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<EditText
android:id="@+id/editText2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="numberDecimal" />
</LinearLayout>
</RelativeLayout>
你曾嘗試添加你開發的代碼。 –
在垂直線性佈局設置高度match_parent並設置每個text_view爲1 – Syn3sthete
我用1周的TextView和1個texdfields與水平線性佈局效果很好嘗試的重量,但如果我用更多的意見怎麼辦? – Tanvir