更改Android TextField的Select Cursor

时间:2017-01-06 07:17:52

标签: android android-studio android-xml

我需要改变这种粉红色的东西的颜色。我不确定这是不是光标。我的理论是它基于设备偏好。当我在我的模拟器中尝试在其他应用程序中显示这些内容时,它们有不同的颜色。

enter image description here

我做了什么:

  1. 搜索SO,但无济于事。
  2. 更改了此属性。 - 闪烁的光标是唯一受此属性影响的东西。

    android:textCursorDrawable
    

1 个答案:

答案 0 :(得分:1)

它不是光标,它是光标指针颜色,因此您可以通过更改主题

来更改指针颜色

ColorAccent:

<style name="EditTextColorCustom" parent="@style/AppBaseTheme">
    <!-- Customize your theme here. -->
    <item name="colorAccent">@color/colorAccent</item>//your color here
</style>

<强>步骤2:

在你的styles.xml中放置如下:

<item name="colorAccent">@color/reddish</item>