android:自定义文本选择器

前端之家收集整理的这篇文章主要介绍了android:自定义文本选择器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想设计一个自定义的文本选择器,当用户单击TextView时更改文本颜色.但是出现以下错误

java.lang.RuntimeException:无法启动活动ComponentInfo {}:android.view.InflateException:二进制XML文件行#55:错误膨胀类

这是我有的:
绘制/ text_selector.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
  <item android:state_enabled="false" 
        android:state_focused="true" 
        android:drawable="@color/black" /> 
  <item android:state_pressed="true" 
        android:drawable="@color/blue" /> 
  <item android:state_focused="true" 
        android:drawable="@color/black" /> 
</selector>

布局/ textview.xml

<TextView android:id = "@+id/last_page_button"
    android:text="@string/last_page_button_string" 
    android:gravity="center_horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" 
    android:background="#ffffff"
    android:textColor = "@drawable/text_selector"
    android:layout_weight="1" />

值/ color.xml

<resources> 
    <color name="white">#ffffffff</color> 
    <color name="black">#ff000000</color> 
    <color name="blue">#ffccddff</color>

解决方法

您不能将drawable赋给textColor.它必须是一个颜色.
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:state_selected="true"

        android:color="@color/color1" />
    <item
        android:color="@color/color2" />
</selector>

在res中创建一个文件夹颜色,将此文件保存为mycolor.xml,并将其分配给textColor作为@ color / mycolor

原文链接:https://www.f2er.com/android/312563.html

猜你在找的Android相关文章