工具栏弹出主题不是白色

时间:2018-12-27 23:19:05

标签: java android

我正在尝试使用白色文本和白色圆点菜单,弹出窗口内的白色弹出窗口和黑色文本以及透明背景设置工具栏。 我也明白了,但是弹出窗口是黑色的,里面的测试是白色的。我该如何更改?

那是我的代码:

styles.xml

<resources>

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>

</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

menu.xml

<menu 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"
tools:context="com.example.bacci.testapp.MainActivity">
<item
    android:id="@+id/action_settings"
    android:title="Info"
    android:orderInCategory="100"
    app:showAsAction="never" />

mainActivity.xml

 <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:minHeight="?attr/actionBarSize"
        android:theme="@style/AppTheme.AppBarOverlay"
        android:popupTheme="@style/AppTheme.PopupOverlay"
        >
 </android.support.v7.widget.Toolbar>

和MainActivity类:

Toolbar toolbar = findViewById(R.id.toolbar);
toolbar.setTitle("RateMe.ai");
setSupportActionBar(toolbar);

实际上,工具栏是透明的,文本和菜单图标是白色的,但是我可以选择的弹出窗口是带有白色文本的黑色。我想要白色和黑色文字。 这里是实际情况的图片

enter image description here

0 个答案:

没有答案