码迷,mamicode.com
首页 > 移动开发 > 详细

Android 自定义RadioButton的样式

时间:2016-01-05 18:21:06      阅读:535      评论:0      收藏:0      [点我收藏+]

标签:

在res/drawable新建radiobutton.xml如下

<selector xmlns:android="http://schemas.android.com/apk/res/android">  
  <item  
        android:state_enabled="true" 
        android:state_checked="true"
        android:drawable="@drawable/check" /><item               
        android:state_enabled="true"     
        android:state_checked="false"
        android:drawable="@drawable/checknull" /></selector>

check和checknull分别为选中和位选中的图片。

然后在你的布局文件中,RadioButton 布局,设置android:button = "@drawable/radiobutton",就可以了!

Android 自定义RadioButton的样式

标签:

原文地址:http://www.cnblogs.com/guop/p/5102952.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!