Android TextView使用Theme更改textColor

时间:2013-08-08 21:21:17

标签: android styles textview themes

我正在尝试将我的所有样式放入我的应用的主题中。但是,我在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”适用于我所有的其他视图,所以我真的不明白这一点,我可能会错过一些简单的东西?

1 个答案:

答案 0 :(得分:2)

我发现了我的问题,万一有人遇到类似的情况!基本上这不起作用的原因是因为我用以下代码给视图充气。

    private View buildGroupView(ExpandListGroup group) {
    LayoutInflater inf = (LayoutInflater) context.getSystemService(context.LAYOUT_INFLATER_SERVICE);
    View view;
    switch(group.getType()){
        case ExpandListGroup.HEADER :
            view = inf.inflate(R.layout.three_col_header, null);
            break;
        default:
            view = inf.inflate(R.layout.detail_expandablelist_group_item, null);
            break;

    }

    return view;
}

在我的Adapter的getGroupView中,我正在返回它。

    public View getGroupView(int groupPosition, boolean isLastChild, View convertView,
        ViewGroup parent) {
    View view = convertView;
    ExpandListGroup group = (ExpandListGroup) getGroup(groupPosition);

    view = buildGroupView(group);

    setGroupViewData(group, view);

    return view;
}

显然我的问题是我需要替换LayoutInflater

inf = (LayoutInflater) context.getSystemService(context.LAYOUT_INFLATER_SERVICE);

with ..

LayoutInflater inf = mActivity.getLayoutInflater();

正如本文帖子底部CommonsWare的建议:Theme/Style is not applied when inflater used with ApplicationContext

感谢您的帮助。