我使用水平線性佈局的文本標籤和單選按鈕組:的Android垂直對齊文本和Widget
如何設置它,這樣標籤(性別)出現在廣播組的垂直中心?目前,它似乎太高
的代碼爲我的佈局的這一部分是:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.4"
android:text="Sex:" />
<RadioGroup
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.6"
android:orientation="horizontal">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Male"
android:id="@+id/input_button_male"
android:paddingRight="10dp"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Female"
android:id="@+id/input_button_female"
android:paddingRight="10dp"/>
</RadioGroup>
</LinearLayout>
哎@Simon的hve你試過這種??? –