我最近更新我的Android支持庫昨天到版本23.2.0
Android的支持庫23.2.0引起工具欄箭頭是黑色
一下子全部預棒棒糖設備更換後箭頭的顏色,漢堡包和(三點菜單)變黑。當他們總是白色的地方。
棒棒糖設備似乎很好。
這裏是我的style.xml
這兩個更新之間根本沒有編輯。
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorPrimaryDark">@color/primaryColorDark</item>
<item name="colorAccent">@color/accentColor</item>
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppTheme.Base">
</style>
<!-- Theme to customise the tool bar -->
<style name="MyCustomToolBarTheme" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="textColorPrimary">@color/textColorWhite</item>
<!-- Added this now to test, still nothing --!>
<item name="colorControlNormal">@color/textColorWhite</item>
</style>
<style name="MyApp.MyCustomToolBarStyle" parent="@style/Widget.AppCompat.Light.ActionBar">
<!--to add-->
</style>
</resources>
,然後這裏是我的工具欄佈局
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_height"
android:background="@color/primaryColor"
app:theme="@style/MyCustomToolBarTheme"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark">
</android.support.v7.widget.Toolbar>
http://stackoverflow.com/questions/30775024/android-material-design-navigation-drawer-menu-icon-你的程序兼容性版本號chage –
對於你的工具欄xml,你可以嘗試android:theme =「@ style/ThemeOverlay.AppCompat.Dark」 app:popupTheme =「@ style/ThemeOverlay.AppCompat.Light」(而不是你的自定義主題) –
看來工作對我的情況罰款。你能向我們展示java代碼嗎? –