内容简介:翻译自:https://stackoverflow.com/questions/18913822/item-tag-requires-a-drawable-attribute
我试图非常简单地设计一个Button.我只是希望它在没有按下时带有文本蓝色,而在单击时带有蓝色文本.
我尝试用样式和选择器来做到这一点.
在我的布局中我有这个按钮:
<Button android:id="@+id/button1" style="@style/MyButton" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/login" />
在res / values / styles中我有这个styles.xml:
<style name="MyButton"> <item name="android:background">@drawable/btn_background</item> <item name="android:textColor">@drawable/btn_textcolor</item> </style>
当然,两个选择器,在res / drawable中,btn_background.xml:
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:state_pressed="true" android:color="@color/white" /> <item android:color="@color/SapphireBlue" /> </selector>
和btn_textcolor.xml:
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:state_pressed="true" android:color="@color/SapphireBlue" /> <item android:color="@color/white" /> </selector>
我运行应用程序或打开布局编辑器时出现的错误是:
<item> tag requires a ‘drawable’ attribute
我理解这个消息,但我没有一个可绘制的,它是一个简单的扁平按钮.
我怎样才能创建这么简单的按钮?
根据 this post 更新,它应该工作.
试试这种方式,希望这可以帮助您解决问题.
btn_background.xml
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@color/white" android:state_pressed="true"></item> <item android:drawable="@drawable/white" android:state_focused="true"></item> <item android:drawable="@drawable/SapphireBlue" android:state_enabled="true" android:state_focused="false" android:state_pressed="false"></item> <item android:drawable="@drawable/white" android:state_enabled="false"></item> </selector>
btn_textcolor.xml
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:color="@color/SapphireBlue" android:state_pressed="true"></item> <item android:color="@drawable/SapphireBlue" android:state_focused="true"></item> <item android:color="@drawable/white" android:state_enabled="true" android:state_focused="false" android:state_pressed="false"></item> <item android:color="@drawable/SapphireBlue" android:state_enabled="false"></item> </selector>
翻译自:https://stackoverflow.com/questions/18913822/item-tag-requires-a-drawable-attribute
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- 为什么实现 .NET 的 ICollection 集合时需要实现 SyncRoot 属性?如何正确实现这个属性?
- 项目文件中的已知 NuGet 属性(使用这些属性,创建 NuGet 包就可以不需要 nuspec 文件啦)
- CSS 属性篇(七):Display属性
- JavaScript对象之数据属性与访问器属性
- Logback file属性 与 fileNamePattern属性的关系
- 浅谈Spring Boot 属性配置和自定义属性配置
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
大数据供应链
娜达·R·桑德斯 (Nada R. Sanders) / 丁晓松 / 中国人民大学出版社 / 2015-7-1 / CNY 55.00
第一本大数据供应链落地之道的权威著作,全球顶级供应链管理专家娜达·桑德斯博士聚焦传统供应链模式向大数据转型,助力工业4.0时代智能供应链构建。 在靠大数据驱动供应链处于领先地位的企业中,45% 是零售商,如沃尔玛、亚马逊,而22%是快消企业,如戴尔电脑。他们都前所未有地掌控了自己的供应链。在库存管理、订单履行率、原材料和产品交付上具有更为广阔的视野。利用具有预见性的大数据分析结果,可以使供需......一起来看看 《大数据供应链》 这本书的介绍吧!