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

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

今天给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>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。