在选择器中使用属性 - Android

时间:2013-10-11 12:56:55

标签: android colors attributes themes

我正在尝试允许用户设置自己的颜色主题。 我已经设法用

完成了这个

attr.xml

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

styles.xml

<style name="Green" parent="@style/AppTheme">
    <item name="extra_light">@color/extra_light_green</item>
</style>

colors.xml

<resources>
    <color name="extra_light_green">#C5E26D</color>
</resources>

这适用于大多数应用程序,但我有一个以前有

的选择器
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@color/extra_light_green" />
</selector>

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="?attr/extra_light" />
</selector>

现在它崩溃了。

这是logcat,关于如何解决这个问题的任何想法?

 FATAL EXCEPTION: main
 android.view.InflateException: Binary XML file line #8: Error inflating class <unknown>
 at android.view.LayoutInflater.createView(LayoutInflater.java:683)
com.android.internal.policy.impl.PhoneLayoutInflater.onCreateView(PhoneLayoutInflater.java:56)
    at com.android.internal.policy.impl.MiuiPhoneLayoutInflater.onCreateView(MiuiPhoneLayoutInflater.java:44)
    at android.view.LayoutInflater.onCreateView(LayoutInflater.java:730)
    at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:755)
    at android.view.LayoutInflater.rInflate(LayoutInflater.java:816)
at android.view.LayoutInflater.inflate(LayoutInflater.java:559)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:466)
    at android.view.LayoutInflater.inflate(LayoutInflater.java:419)

修改

这是我应用选择器的地方

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    android:layout_marginLeft="10dp"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/row_menu_title"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:background="@drawable/selector_item_news"
        android:gravity="center_vertical"
        android:padding="10dp"
        android:text="Medium Text"
        android:textSize="16sp" />

</LinearLayout>

2 个答案:

答案 0 :(得分:2)

API 23 Item attributes支持的Attrubutes,在更高版本上,ColorStateList可以用AppCompatResources以编程方式创建,并与所需视图一起使用。

selector menu_item_text_color.xml

time

源代码

<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:color="?attr/menu_item_text_color_selected" android:state_checked="true" />
    <item android:color="?attr/menu_item_text_color" /> <!-- Default -->
</selector>

答案 1 :(得分:1)

我找到了解决此问题的方法。似乎android在预期可绘制时不能应用颜色。

创建一个名为 item_news_drawable.xml

的实体形状drawable
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="?attr/extra_light"/>
</shape>

然后修改你的&#34; selector_item_news.xml&#34;

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/item_news_drawable" />
</selector>

我使用颜色作为背景而不是按下状态。但是在应用此代码后,textview的背景会因应用主题而改变。

UPD :我在Android L预览版上测试了我的解决方案。但是在Android 4.4.2上,它也会与Resources $ NotFoundException崩溃。 this answer

中的详细信息