如何更改EditText的颜色/外观选择句柄/锚点?

时间:2013-02-28 11:07:41

标签: android android-edittext android-theme

所以我将Holo Colors GeneratorAction Bar Style Generator的Holo主题的风格改为我自己的颜色。但是当我在编辑文本中选择文本时,所选位置的“标记”仍为蓝色。我怎样才能改变它?

Left Middle Right

6 个答案:

答案 0 :(得分:34)

这里最糟糕的部分是找到这个项目的“名称”以及如何在主题中调用它。所以我浏览了android SDK文件夹中的每个drawable,最后找到了名为“text_select_handle_middle”,“text_select_handle_left”和“text_select_handle_right”的drawables。

所以解决方案很简单:将这些带有自定义设计/颜​​色的drawable添加到drawable文件夹中,并将它们添加到主题样式定义中,如:

<style name="MyCustomTheme" parent="@style/MyNotSoCustomTheme">
        <item name="android:textSelectHandle">@drawable/text_select_handle_middle</item>
        <item name="android:textSelectHandleLeft">@drawable/text_select_handle_left</item>
        <item name="android:textSelectHandleRight">@drawable/text_select_handle_right</item>
</style>

答案 1 :(得分:11)

如何从代码中完成:

try {
    final Field fEditor = TextView.class.getDeclaredField("mEditor");
    fEditor.setAccessible(true);
    final Object editor = fEditor.get(editText);

    final Field fSelectHandleLeft = editor.getClass().getDeclaredField("mSelectHandleLeft");
    final Field fSelectHandleRight =
        editor.getClass().getDeclaredField("mSelectHandleRight");
    final Field fSelectHandleCenter =
        editor.getClass().getDeclaredField("mSelectHandleCenter");

    fSelectHandleLeft.setAccessible(true);
    fSelectHandleRight.setAccessible(true);
    fSelectHandleCenter.setAccessible(true);

    final Resources res = context.getResources();

    fSelectHandleLeft.set(editor, res.getDrawable(R.drawable.text_select_handle_left));
    fSelectHandleRight.set(editor, res.getDrawable(R.drawable.text_select_handle_right));
    fSelectHandleCenter.set(editor, res.getDrawable(R.drawable.text_select_handle_middle));
} catch (final Exception ignored) {
}

答案 2 :(得分:9)

我知道这已经很晚了,但如果您只想更改句柄的颜色,则只需将以下内容添加到styles.xml文件即可。

<style name="ColoredHandleTheme">
    <item name="colorControlActivated">@color/colorYouWant</item>
</style>

然后只需设置您想要影响EditText的任何活动的主题。

或者如果您想在应用范围内设置它,您可以执行以下操作:

<style name="ColoredHandleThemeForWholeApp">
    <item name="colorAccent">@color/colorYouWant</item>
</style>

并为整个应用设置该主题。

问题解决了!

答案 3 :(得分:2)

要更改选择手柄的颜色,您必须覆盖应用主题中的激活颜色:

    RSAES_OAEP_SHA_Decryptor d(privateKey);
    StringSource stringSource(cipher, true,
        new PK_DecryptorFilter(rng, d,
            new StringSink(recovered)
        )
    );

答案 4 :(得分:1)

您可以在http://androiddrawables.com/Other.html中看到这些属性。

更改您的values / styles.xml,例如:

<style name="AppTheme.Cursor" parent="AppTheme">
    <item name="colorAccent">@color/cursor</item>
</style>

其中@ color / cursor添加在values / color.xml中。之后将样式应用于活动:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setTheme(R.style.AppTheme_Cursor);
    ...

访问How to change EditText pointer color (not cursor)了解其他解决方案。

答案 5 :(得分:1)

对于那些尝试通过代码处理此问题的人,您可以使用Jared Rummler提供的答案(对于小于或等于28的API版本),但是从Android Q(API 29)开始,他们添加了@UnsupportedAppUsage(maxTargetSdk = Build。 VERSION_CODES.P)批注,它似乎不适用于Q +。而是将新方法添加到EditText:

setTextSelectHandle(R.drawable.test);
setTextSelectHandleLeft(R.drawable.test);
setTextSelectHandleRight(R.drawable.test);

因此,要使其正常工作,您可以执行以下操作:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.Q) {
                setTextSelectHandle(R.drawable.test);
                setTextSelectHandleLeft(R.drawable.test);
                setTextSelectHandleRight(R.drawable.test);
            } else {
                try {
                    final Field fEditor = TextView.class.getDeclaredField("mEditor");
                    fEditor.setAccessible(true);
                    final Object editor = fEditor.get(this);

                    final Field fSelectHandleLeft = editor.getClass().getDeclaredField("mSelectHandleLeft");
                    final Field fSelectHandleRight =
                            editor.getClass().getDeclaredField("mSelectHandleRight");
                    final Field fSelectHandleCenter =
                            editor.getClass().getDeclaredField("mSelectHandleCenter");

                    fSelectHandleLeft.setAccessible(true);
                    fSelectHandleRight.setAccessible(true);
                    fSelectHandleCenter.setAccessible(true);

                    final Resources res = getResources();

                    fSelectHandleLeft.set(editor, res.getDrawable(R.drawable.test, null));
                    fSelectHandleRight.set(editor, res.getDrawable(R.drawable.test, null));
                    fSelectHandleCenter.set(editor, res.getDrawable(R.drawable.test, null));
                } catch (final Exception ignored) {
                }
            }