ラジオグループ内で上下に2つのラジオボタンを使用しています。上のボタンにはテキストとして「to」があり、もう一方のボタンには「from」があります。私が望むのは、両方が中央にあることですが、checkradio によって整列されることです。私はこれを試しました:
<RadioGroup
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/rgroup_pk"
android:gravity="center">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/rbtn_to"
android:text="@string/title_to"
android:checked="true"
android:gravity="center|center_vertical" />
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/rbtn_from"
android:text="@string/title_from"
android:gravity="center|center_vertical" />
</RadioGroup>
これにより、ボタンは垂直方向と水平方向の中央にとどまりますが、テキストのサイズが異なるため、次のように表示されます (「x」が checkradio の場合):
X to
X from
そして、私が欲しいのはこれです:
x to
x from