开发一个最低API级别为10(2.3.3)的Android应用程序,并使用工具栏作为我的操作栏。主页图标和溢出图标以及标题文本颜色在Honeycomb及以上都是白色,这就是我想要的。问题是在蜂窝下面,主页图标,溢出图标和titleColor是黑色的,我希望它们也是白色的。我该怎么做呢以下是我的代码。
styles.xml
<style name="Theme.DesignDemo" parent="Base.Theme.DesignDemo">
</style>
<style name="Base.Theme.DesignDemo" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primaryDark</item>
<item name="colorAccent">@color/accent</item>
<item name="android:windowBackground">@color/window_background</item>
<item name="android:windowAnimationStyle">@style/MyAwesomeAnimation</item>
</style>
工具栏
<android.support.design.widget.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
答案 0 :(得分:0)
我遇到了完全相同的问题。 API级别11及以下版本的溢出和homeAsUp图标均为黑色。应用程序主题中的以下附加行解决了问题
<item name="android:textColorSecondary">@android:color/white</item>
另见AppCompat Toolbar: Change Overflow Icon Color in ActionMode