EditText光标颜色设置

Posted 苏小七

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EditText光标颜色设置相关的知识,希望对你有一定的参考价值。

又一次做应用,发现EditText没有显示光标,借鉴了网上的方法,发现是因为光标是白色的,与背景一样造成的,这里记录一下如何设置EditText等的光标颜色:

需要在布局文件中指定androd:textCursorDrawable,如果需要设置成与字体一样的颜色,改属性设置为“@null”即可,如果需要自定义颜色,需要自定义一个drawable文件,例如:在drawable下窗井my_cursor.xml,内容如下

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <solid android:color="#000080" />
    <size android:width="1dp"/>

</shape>

然后,设置android:textCursorDrawable="@drawable/my_cursor",光标颜色就可以改变为指定颜色。

 

以上是关于EditText光标颜色设置的主要内容,如果未能解决你的问题,请参考以下文章

如何在 android 中更改 EditText 气泡颜色(光标下)?

解决android手机EditText设置光标颜色,android:textCursorDrawable="@drawable/corner_cursor" 华为手机无效果的问题

android中如何更改EditText 的光标颜色?

使用颜色选择器更改片段中edittext的背景颜色

Android输入时EditText光标不显示的解决方法

更改Edittext光标的颜色与粗细