我有一些我想在我的工具栏中使用的白色透明图标,但它们没有被着色以适合我的主题(基于AppCompat.Light
)。无论我放置什么颜色的图标,它们都会保持该颜色并且不会变成深灰色(就像溢出和 SearchView 图标一样)。
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:contentInsetStart="0dp">
这是我的主题:
<style name="Theme.*myapp*" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@color/accent</item>
<item name="colorPrimaryDark">@color/accent_dark</item>
<item name="colorAccent">@color/accent</item>
<item name="windowActionBar">false</item>
<item name="android:dialogTheme">@style/*myapp*.Dialog</item>
<item name="android:textColorPrimary">#DE000000</item>
<item name="android:textColorSecondary">#8A000000</item>
</style>
我必须做些什么才能让工具栏为 MenuItems 着色?