我在我的应用程序中使用工具栏进行材料设计。一切正常,但除了改变菜单项文字颜色,我完全坚持解决方案。我还发布了应该采取的文本的截图和我在我的应用程序中使用的代码供您参考。我尝试了几种替代方法,例如分配如下
<item name="android:actionMenuTextColor">@color/white</item>
<item name="android:textColor">#000</item>
但已知上述解决方案对我有用。
要求截图:
需要将SKIP菜单项从黑色更改为白色。
styles.xml
<style name="ToolBarTheme" parent="@style/Theme.AppCompat.Light">
<item name="colorPrimary">@color/blue</item>
<item name="colorPrimaryDark">@color/blue</item>
<item name="windowNoTitle">true</item>
<item name="windowActionBar">false</item>
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>
<item name="android:actionMenuTextColor">@color/white</item>
<item name="android:textColor">#000</item>
</style>
toolbar.xml
<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"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways"
android:fitsSystemWindows="true"
android:background="?attr/colorPrimary"/>
清单
<activity
android:name=".activity.HomeActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:configChanges="keyboard|screenLayout|orientation"
android:theme="@style/ToolBarTheme"></activity>
我真的不知道我犯了什么错误。请帮我。提前致谢
答案 0 :(得分:19)
更改此
<item name="android:actionMenuTextColor">@color/white</item>
到
<item name="actionMenuTextColor">@color/white</item>
将主题应用于工具栏:
android:theme="@style/ToolBarTheme"
您设置小部件的样式并为您的活动提供主题。