在Android中更改按钮样式的广播组

时间:2014-02-04 13:42:26

标签: android

我想更改Android单选按钮的默认按钮按钮样式以适合我的主题。我怎么能做到这一点?

Android prototype

2 个答案:

答案 0 :(得分:4)

创建一个选择器drawable

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item android:drawable="@drawable/radio_selected"  android:state_checked="true" />
    <item android:drawable="@drawable/radio_normal" />

</selector>

然后在你的单选按钮的xml中     android:button =“@ drawable /(你的绘图名称)”

示例:

<RadioButton
    android:id="@+id/radio_button_id"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:button="@drawable/your_drawable_name"
    android:text="your_text" />

答案 1 :(得分:2)

Adding custom radio buttons in android。希望这会对你有所帮助。