ここで学んだことに基づいて、関連するウィジェットのグループ化の周りにいくつかの「フェンス」を追加することができました。
しかし、ご覧のとおり、2 番目/下のボックスが最初のラジオ ボタンのテキストを埋め尽くしています。スペースを追加するには、どの要素を変更する必要がありますか? ボックス自体に何かを追加する必要がありますか?これは drawable フォルダーにあり、次のように定義されています。
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<stroke
android:width="1dp"
android:color="#f000"
/>
</shape>
...または内側の LinearLayout、または問題のラジオ ボタン (またはそれを囲む RadioButtonGroup ウィジェット) に? そのxmlは次のとおりです。
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/box"
android:orientation="vertical">
. . .
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radbtnBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/using_labels_black" />
. . .
</RadioGroup>
</LinearLayout>