3

ご覧のとおり、単純な 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のみを使用してこれを達成する簡単な方法はありますか?

ありがとうございました。

4

3 に答える 3

-2

グラビティトップを設定 | ラジオボタンの下

radioButton.setGravity(Gravity.TOP | Gravity.BOTTOM);
于 2016-06-26T15:40:23.613 に答える