我正在尝试将我所有的样式放入我的应用程序的主题中。但是,我无法更改 TextView 上的 textColor。这是来自我的attrs.xml文件。
<?xml version="1.0" encoding="utf-8"?>
<declare-styleable name="flat">
<attr name="detail_name_view" format="reference" />
</declare-styleable>
这是来自我的styles.xml文件
<style name="flat_theme" parent="android:Theme.NoTitleBar">
<item name="detail_name_view">@style/flat_detail_name</item>
</style>
<style name="flat_detail_name" parent="@android:style/Widget.TextView">
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
<item name="android:textColor">@color/detail_group_black</item>
<item name="android:textSize">16sp</item>
<item name="android:singleLine">true</item>
<item name="android:ellipsize">end</item>
</style>
这是来自我的layout.xml文件
<TextView
android:id="@+id/detail_name"
style="?detail_name_view"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_gravity="left|center_vertical"
android:layout_marginLeft="5dp"
android:layout_weight="1"
android:gravity="left|center_vertical" />
我还使用以下内容正确设置了清单。
<application
android:name="com.example.blah"
android:icon="@drawable/blah"
android:label="@string/app_name"
android:theme="@style/flat_theme"
颜色永远不会更改为“@color/detail_group_black”。我错过了一些简单的东西吗?还是 Android 已经为 TextView 创建了 textColor 属性的问题,这就是为什么样式没有覆盖它的原因?我的属性主题策略似乎适用于应用程序的其余部分,但不是这个。有任何想法吗?提前致谢。
另外,如果可以帮助我,我宁愿不为这种更改创建自定义 TextView 类:它是一个相当大的项目,我不确定如果我为所有内容扩展 TextView 可能会遇到什么样的问题。
编辑 另外,如果我将 TextView 更改为 style="@style/flat_detail_name_view",它工作正常。我不想这样做的原因是我可以通过更改主题来更改这些文本视图的外观。使用 style="?something_else" 对我所有其他视图都有效,所以我真的不明白这一点,我可能错过了一些简单的东西?