我想在AppTheme中设置默认的文本颜色,该颜色应为黑色(而不是默认的Material Design深灰色)。应该通过在UI元素(例如TextView)上通过android:textAppearance-attribute设置自定义样式来覆盖textColor。

,这是我当前的设置:

我在项目中使用AppCompat-Library:

compile 'com.android.support:appcompat-v7:22.2.0'

我定义了以下主题:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
  <item name="colorPrimary">@color/primary</item>
  <item name="colorPrimaryDark">@color/primary_dark</item>
  <item name="colorAccent">@color/accent</item>
  <item name="android:textColorPrimary">@color/black</item> <!-- All TextViews should have this color as default text color -->
</style>

在AndroidManifest.xml中设置的:
<application
  android:name=".core.BaseApplication"
  android:allowBackup="true"
  android:icon="@mipmap/ic_launcher"
  android:label="@string/app_name"
  android:theme="@style/AppTheme">

此外,我定义了一些样式来更改某些TextViews的textAppearance:
<style name="App.Heading" parent="android:TextAppearance.Widget.TextView">
  <item name="android:textSize">16sp</item>
  <item name="android:textColor">@color/red</item>
</style>

<style name="App.Heading.Highlighted" parent="android:TextAppearance.Widget.TextView">
  <item name="android:textSize">16sp</item>
  <item name="android:textColor">@color/blue</item>
</style>

现在,我有了一个带有一些TextViews的xml布局。其中一些应该具有默认的textAppearance(实际上是黑色字体,在我的主题中定义为android:textColorPrimary)。有些人应该使用我定义的样式自定义textappearance:
 <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginTop="10dp"
     android:text="CUSTOM: App.Heading"
     android:textAppearance="@style/App.Heading" />

  <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginTop="10dp"
     android:text="CUSTOM: App.Heading.Highlighted"
     android:textAppearance="@style/App.Heading.Highlighted" />

  <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_marginTop="10dp"
     android:text="Normal Textview with no style"/>

前两个TextView应用我定义的textAppearance,这很好。但是最后一个TextView具有深灰色的textcolor(默认是“ Material 设计”吗?),而不是黑色的。如果设置属性:
<item name="android:textColor">@color/black</item>

在我的AppTheme中,所有TextView均具有黑色文本颜色。我的样式(例如App.Heading)中定义的textcolor不再被识别。

所以我的问题是:如何为我的TextViews设置默认的textColor,可以通过设置textAppearance来覆盖它?

最佳答案

由于存在三种可设置样式的android:textColor属性,即textColorPrimary textColorSecondary和textColorTertiary,以及许多用于基本样式android:textAppearance的属性(如小型介质等)(现已弃用?),因此很难找到这种方法。

无论如何,对于没有样式的TextView,似乎默认情况下是指android:textAppearanceSmall可样式化属性,其值是样式TextAppearance.AppCompat.Small,该样式通过Base.TextAppearance.AppCompat.Small覆盖了android:textColor属性和?android:attr/textColorTertiary值。

然后像下面这样覆盖它就可以了:

<item name="android:textColorTertiary">@color/black</item>

10-01 01:22