如何在工具栏主题上设置textColorSecondary

时间:2017-09-20 12:39:30

标签: android android-toolbar android-theme

我已经尝试了几天来修复我的工具栏中的多个UI元素是错误颜色的问题。如果你看一下下图,你可以看到我的意思:

enter image description here

应该是白色的元素是黑色的,我只是无法弄清楚如何通过我的主题解决这个问题。

这里是我的themes.xml(关于那里的混乱的sry,但主题真的很难):

data.json

我发现如果我在AppTheme.NoActonBar中设置textColorSecondary,我的所有控件都会正确地涂成白色,但是这会让我在所有对话框中都出现问题,现在也将textColorSecondary设置为白色。

我希望有人可以向我展示一个解决方案,因为我没有想法。

1 个答案:

答案 0 :(得分:4)

试试这个here

在工具栏布局中:

 <android.support.v7.widget.Toolbar
      xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:app="http://schemas.android.com/apk/res-auto"
      android:id="@+id/toolbar"
      android:layout_width="match_parent"
      android:layout_height="?attr/actionBarSize"
      android:minHeight="?attr/actionBarSize"
      app:theme="@style/ToolBarStyle"
      app:popupTheme="@style/ToolBarPopupStyle"
      android:background="@color/actionbar/>

在你的风格中:

 <!-- ToolBar -->
  <style name="ToolBarStyle" parent="Theme.AppCompat">
      <item name="android:textColorPrimary">@android:color/white</item>
      <item name="android:textColorSecondary">@android:color/white</item>
      <item name="actionMenuTextColor">@android:color/white</item>      
      <item name="actionOverflowButtonStyle">@style/ActionButtonOverflowStyle</item>
      <item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
 </style>