1

如何制作一个单选按钮,在其中使用 android:button 更改可绘制对象并在顶部显示文本?使用常规单选按钮,文本在可绘制对象后面分层。

现在,我开始对自己的单选按钮感到沮丧。

我想要这样的东西:

<RadioGroup xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >
    <RadioButton
        android:text="something that is on top"
        android:id="@+id/toggle_tab_left"
        android:button="@drawable/main_selector"
        style="@style/TabStyle"/>
    <RadioButton 
        android:button="@drawable/info_selector"
        android:text="something that is on top"
        android:id="@+id/toggle_tab_right"
        style="@style/TabStyle"/>
</RadioGroup>
4

1 回答 1

3

您可以改用background图形的属性,并将其设置button为@null 或透明颜色。

于 2012-04-11T13:46:19.203 回答