无法在自定义颜色选择器中使用标准的android颜色属性

时间:2012-06-27 15:00:29

标签: android android-theme

因此,android在themes.xml中定义了以下内容:

<style name="Theme">
    ...
    <item name="colorPressedHighlight">@color/legacy_pressed_highlight</item>
</style>

<style name="Theme.Holo">
    ...
    <item name="colorPressedHighlight">@color/holo_blue_light</item>
</style>

我希望在按下时使用此colorPressedHighlight作为自定义Button的背景颜色。所以我在res/color/app_button_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:drawable="?android:colorPressedHighlight"/>
    <item android:drawable="@android:color/transparent" />
</selector>

最后,我定义了自定义ImageButton样式:

<style name="App_ImageButtonStyle" parent="@android:style/Widget.ImageButton">
    <item name="android:gravity">center</item>
    <item name="android:background">@color/app_button_background</item>
</style>

我使用以下调用堆栈在应用启动时崩溃:

06-27 20:24:41.954: E/AndroidRuntime(532): Caused by: org.xmlpull.v1.XmlPullParserException: Binary XML file line #6: <item> tag requires a 'drawable' attribute or child tag defining a drawable
06-27 20:24:41.954: E/AndroidRuntime(532):  at android.graphics.drawable.StateListDrawable.inflate(StateListDrawable.java:178)
06-27 20:24:41.954: E/AndroidRuntime(532):  at android.graphics.drawable.Drawable.createFromXmlInner(Drawable.java:867)
06-27 20:24:41.954: E/AndroidRuntime(532):  at android.graphics.drawable.Drawable.createFromXml(Drawable.java:804)
06-27 20:24:41.954: E/AndroidRuntime(532):  at android.content.res.Resources.loadDrawable(Resources.java:1920)

我知道直接访问@color/legacy_pressed_highlight@color/holo_blue_light而不是通过colorPressedHighlight访问它们可以解决崩溃,但它无法解决问题。主题可能会有所不同,因此我需要通过colorPressedHighlight属性访问它。

PS:我有一个类似的problem我尚未找到答案。有人可以帮忙!

1 个答案:

答案 0 :(得分:-1)

也许您还需要在文件res / values / attrs.xml中声明属性引用:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <attr name="colorPressedHighlight" format="reference" />
</resources>

并将其称为?colorPressedHighlight,而不是?android:colorPressedHighlight