在为设置TextView.TextColor的布局充气时发生崩溃

时间:2017-08-27 23:55:20

标签: android xamarin xamarin.android textview layout-inflater

如果该布局将TextView的textColor设置为以下内容,则无法对布局进行充气...

android:textColor="?android:attr/textColor"

我相信这个值是为应用程序明确定义的,因为我有一个drawable,它也引用了这个资源,它运行得很好。但是,如果我尝试使用强调颜色,那么它将正常工作,例如。

android:textColor="?android:attr/colorAccent"

textColor值有什么不同?

1 个答案:

答案 0 :(得分:2)

我必须假设您正在寻找主题的主要文字颜色,因此您可以使用:

android:textColor="?android:attr/textColorPrimary"

有十几个textColorXXXX属性,因此您需要查看它们以查看您实际尝试使用的属性。