我正在尝试更改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>
在我的Activity中,我使用的是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" />
答案 0 :(得分:-1)
尝试设置android:actionModeStyle
:
<item name="android:actionModeStyle">@style/MyActionModeStyle</item>
答案 1 :(得分:-1)
好的,我通过用完成按钮以编程方式替换HomeAsUpIndicator来管理它。多数民众赞成我想要的......