2

我正在尝试更改我的 ActionMode 的背景和文本颜色。我正在使用 API 11 和 AppCompat。

我用下面的style.xml试过了,但是ActionMode背景总是白色的,文本颜色是黑色的。我想将文本颜色更改为白色,将背景颜色更改为蓝色。

我该如何解决这个问题?

这是我的 style.xml

<resources>
    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- ActionMode -->
        <item name="actionModeStyle">@style/MyActionModeStyle</item>
    </style>


    <!-- Setup the style of the ActionMode here -->
    <style name="MyActionModeStyle" parent="@style/Widget.AppCompat.ActionMode">
        <item name="android:background">@color/blue</item>
        <item name="background">@color/blue</item>
        <item name="android:titleTextStyle">@style/MyActionModeTitle</item>

        <item name="titleTextStyle">@style/MyActionModeTitle</item>
    </style>

    <!-- Setup the text style of the ActionMode here -->
    <style name="MyActionModeTitle" parent="@style/TextAppearance.AppCompat.Widget.ActionMode.Title">
        <item name="android:textColor">#ffffff</item>
    </style>
</resources>

在我的活动中,我使用的是 android.support.v7.app.ActionBarActivity 但我使用工具栏:这是我的 settings_activity_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"
    app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?attr/actionBarSize"
    app:navigationContentDescription="@string/abc_action_bar_up_description"
    android:background="?attr/colorPrimary"
    app:navigationIcon="?attr/homeAsUpIndicator"
    app:title="@string/action_settings" />
4

2 回答 2

-1

也尝试设置android:actionModeStyle

<item name="android:actionModeStyle">@style/MyActionModeStyle</item>
于 2015-06-20T15:20:25.960 回答
-1

好的,我通过用完成按钮以编程方式替换 HomeAsUpIndicator 来管理它。这就是我想要的...

于 2015-06-21T11:53:16.727 回答