我需要改变这种粉红色的东西的颜色。我不确定这是不是光标。我的理论是它基于设备偏好。当我在我的模拟器中尝试在其他应用程序中显示这些内容时,它们有不同的颜色。
我做了什么:
更改了此属性。 - 闪烁的光标是唯一受此属性影响的东西。
android:textCursorDrawable
答案 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>