如何使用android:按钮更改drawable并在顶部显示文本?使用常规单选按钮,文本分层在drawable后面。
现在我开始沮丧地执行我自己的无线电按钮了。
我想要这样的事情:
<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>
答案 0 :(得分:3)
您可以使用图片的background
属性,并将button
设置为@null或透明色。