如您所见,我得到了一个简单的 RadioGroup 及其选项。
<RadioGroup
android:id="@+id/radio_report_problems"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="20dp" >
<RadioButton
android:id="@+id/radiooption_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/report_problem_rd_opt_1" />
<RadioButton
android:id="@+id/radiooption_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/report_problem_rd_opt_2" />
.....
</RadioGroup>
我的问题是项目符号位于文本的中间,而不是从第一行开始
在不使用 tableView 或 linearLayout 的情况下,是否有一种仅使用 RadioGroup来实现此目的的简单方法?
谢谢你。