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

每日总结 - android设置背景颜色报错

时间:2014-09-28 13:04:52      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   color   io   使用   sp   div   

每天坚持总结,总会发生质变!

今天给radiobutton设置背景颜色报错,信息如下:

item> tag requires a ‘drawable‘ attribute or child tag defining a drawable

解决方法:

  你不能将颜色选择器用在background上,应该使用drawable selector。

 1 <selector xmlns:android="http://schemas.android.com/apk/res/android">
 2     <item android:state_checked="true">
 3         <shape>
 4             <solid android:color="@color/orange"></solid>
 5         </shape>
 6     </item>
 7     <item android:state_checked="false">
 8         <shape>
 9             <solid android:color="@color/gray"></solid>
10         </shape>
11     </item>
12 </selector>

 

每日总结 - android设置背景颜色报错

标签:android   style   blog   http   color   io   使用   sp   div   

原文地址:http://www.cnblogs.com/dongye/p/3997809.html

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