Android:TextView 不遵守 android:TextViewStyle 使用 appcompat-v7 22.1.1

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

我已经使用下面的代码覆盖了 Textview 颜色,在我更新以支持存储库后,这些代码在较低版本的 appcompat-v7 22.1 中工作正常,这些代码不起作用。对这些有什么想法吗?

<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>

在 appcompat-v7 22.1.1 中,他们没有为 TextView 定义 "textViewStyle" 似乎参考以下 link 了解详情 https://code.google.com/p/android/issues/detail?id=170476