Android: TextView does not support android: TextViewStyle using appcompat-v7 22.1.1

I redefined the color Textviewusing the code below, which works well in the lower version of appcompat-v7 22.1 after I updated it to maintain a repository that they do not work. Any idea on them?

<style name="AppTheme" parent="Theme.AppCompat">
    <item name="android:textViewStyle">@style/AppTheme.TextView</item>
</style>

<style name="AppTheme.TextView" parent="android:Widget.TextView">
    <item name="android:textColor">@color/black</item>
</style>
+4
source share
1 answer

In appcompat-v7 22.1.1, they did not determine that the "textViewStyle" for the TextView apparently refers to the following link https://code.google.com/p/android/issues/detail?id=170476

+2
source

All Articles