11

我看到设置动作模式“完成”/“关闭”按钮的文本颜色。这是我尝试过的:

<item name="android:actionModeCloseButtonStyle">@style/ActionModeCloseButton</item>
....
<style name="ActionModeCloseButton" parent="android:style/Widget.Holo.ActionButton.CloseMode">
    <item name="android:textColor">@android:color/white</item>
</style>

但是没有效果。

在此处输入图像描述

请注意,在 JB 上,我将ActionModeCloseButton样式的父级设为常规全息主题就足够了。它在那里工作正常(甚至没有textColor设置)。

有任何想法吗?

4

2 回答 2

6

首先,文本视图“完成”仅在大型设备上可见。action_mode_close_item.xml在 Android 源代码中结帐。因此,android:actionModeCloseButtonStyle仅适用于包含视图,而不适用于 imageview 和 textview。

幸运的是,android 工程师使用可公开访问的属性来设置子视图的样式。

  • 用于android:actionMenuTextColor更改为 TextView 的 textColor。
  • 用于android:actionModeCloseDrawable更改 ImageView 的可绘制对象

例子:

<style name="MyTheme">
    <item name="android:actionMenuTextColor">#ff000000</item>
    <item name="android:actionModeCloseDrawable">@drawable/my_close_drawable</item>
</style>

下面是 -folder 中的副本,您可以action_mode_close_item.xmllayout-large其中查看布局的构建方式。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/action_mode_close_button"
        android:focusable="true"
        android:clickable="true"
        android:paddingStart="8dip"
        style="?android:attr/actionModeCloseButtonStyle"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginEnd="16dip">
    <ImageView android:layout_width="48dip"
               android:layout_height="wrap_content"
               android:layout_gravity="center"
               android:scaleType="center"
               android:src="?android:attr/actionModeCloseDrawable" />
    <TextView android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:layout_gravity="center"
              android:layout_marginStart="4dip"
              android:layout_marginEnd="16dip"
              android:textAppearance="?android:attr/textAppearanceSmall"
              android:textColor="?android:attr/actionMenuTextColor"
              android:textSize="12sp"
              android:textAllCaps="true"
              android:text="@string/action_mode_done" />
</LinearLayout>
于 2013-06-17T14:10:01.630 回答
0

由于操作模式关闭按钮的布局没有为文本视图提供颜色属性,因此无法在自定义主题中设置此颜色。相反,我发现的唯一方法是在onPrepareActionMode()派生ActionMode类的方法中覆盖文本颜色:

@Override
public boolean onPrepareActionMode(ActionMode mode, Menu menu) {
    new AsyncTask<Void, Void, Void>() {
        @Override
        protected Void doInBackground(Void... none) {
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
            }
            return null;
        }

        @Override
        protected void onPostExecute(Void none) {
            if (activity != null) {
                LinearLayout layout = (LinearLayout) activity
                            .findViewById(R.id.abs__action_mode_close_button);

                if (layout == null) {
                    int id = Resources.getSystem().getIdentifier(
                                      "action_mode_close_button", "id", "android");
                    layout = (LinearLayout) activity.findViewById(id);
                }

                if (layout != null && layout.getChildCount() > 1) {
                    TextView label = (TextView) layout.getChildAt(1);
                    if (label != null) label.setTextColor(Color.RED);
                }
            }
        }
    }.execute();

    return false;
}

在 Android 4.0 前后使用了两台设备。

于 2013-10-11T13:25:41.617 回答