如何将单选按钮的文本放在按钮的下方并居中?

时间:2019-02-11 21:03:22

标签: android android-layout

我正在尝试从按钮下方的单选按钮重新放置文本,然后将其居中。我尝试使用:

android:gravity="center|below"

但这对我不起作用。当前是完整的RadioGroup:

<RadioGroup
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="30dp"
    android:orientation="horizontal">

    <RadioButton
        android:id="@+id/radioButton3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Left Channel" />

    <RadioButton
        android:id="@+id/radioButton2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Both Channels" />

    <RadioButton
        android:id="@+id/radioButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Right Channel" />

</RadioGroup>

0 个答案:

没有答案