Android 自定义RadioButton的样式

我们知道Android控件里的button,listview可以用xml的样式自定义成自己希望的漂亮样式。

最近用到RadioButton,利用xml修改android:background="@drawable/button_drawable",其中button_drawable为自己定义的.xml文件(res/drawable文件下),但是不成功,到网上查找,也没有正确的说法,我就开始自己尝试,最后做好了。

其实方法很简单,同样在res/drawable新建radiobutton.xml如下

01 <selector xmlns:android="http://schemas.android.com/apk/res/android">
02     <item
03           android:state_enabled="true"
04           android:state_checked="true"
05           android:drawable="@drawable/check" />
06     <item             
07           android:state_enabled="true"    
08           android:state_checked="false"
09           android:drawable="@drawable/checknull" />
10 </selector>
1 check和checknull分别为选中和位选中的图片。
1 然后在你的布局文件中,RadioButton 布局
view source print ?
1 设置android:button = "@drawable/radiobutton",就可以了!
Android 自定义RadioButton的样式_第1张图片


你可能感兴趣的:(android,xml,ListView,button,RadioButton)