我为我的应用定义了以下样式:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="AppTheme.Base">
</style>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimaryDark">@color/primaryColorDark</item>
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorAccent">@color/accentColor</item>
<item name="android:textColorPrimary">@color/textcolorsecundary</item>
<item name="android:textColorSecondary">@color/textcolorsecundary</item>
<item name="android:popupMenuStyle">@style/AppTheme.Base.PopupMenu</item>
</style>
<style name="AppTheme.Base.PopupMenu" parent="Widget.AppCompat.PopupMenu">
<item name="android:popupBackground">@color/primaryColor</item>
</style>
</resources>
不幸的是,弹出菜单背景的样式(例如在选项菜单中)根本不会改变。文本颜色设置为correclty,但popupBackground
完全被忽略,它始终保持白色。
那么如何将其改为我的颜色呢?
修改
使用自定义工具栏可能是个问题吗?
<?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="wrap_content"
android:background="@color/primaryColor"
app:theme="@style/AppTheme" />
答案 0 :(得分:4)
解决了几个小时的工作......
styles.xml:
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="AppTheme" parent="AppTheme.Base"></style>
<style name="AppTheme.Base" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimaryDark">@color/primaryColorDark</item>
<item name="colorPrimary">@color/primaryColor</item>
<item name="colorAccent">@color/accentColor</item>
<item name="android:textColorPrimary">@color/textcolorsecundary</item>
<item name="android:textColorSecondary">@color/textcolorsecundary</item>
<item name="android:actionModeBackground">@color/primaryColor</item>
</style>
<style name="AppTheme.Toolbar" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
<item name="android:textColorPrimary">@color/textcolorsecundary</item>
<item name="actionMenuTextColor">@color/textcolorsecundary</item>
<item name="android:textColorSecondary">@color/textcolorsecundary</item>
<item name="android:background">@color/primaryColor</item>
</style>
</resources>
toolbar.xml:
<?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:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:elevation="2dp"
android:focusable="false"
android:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
app:theme="@style/AppTheme.Toolbar" />
答案 1 :(得分:2)
请试试这个
<style name="AppTheme.Base.PopupMenu" parent="@style/Theme.AppCompat">
<item name="android:popupBackground">@color/primaryColor</item>
</style>
答案 2 :(得分:1)
要更改弹出菜单背景颜色,并且由于Mulgard的回答,我在调整了接受的答案源代码后做了以下几点:
所以在activity_main.xml
:
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:elevation="4dp"
app:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/CustomPopupMenu" />
在styles.xml
:
<!-- PopupMenu styles -->
<style name="CustomPopupMenu" parent="@android:style/Widget.PopupMenu">
<item name="android:background">@color/gray</item>
<item name="android:textColor">@color/white</item>
</style>
这就是全部,它对我有用。我希望这对你有帮助。