设置EditText光标颜色
我遇到了这个问题,我在平板电脑项目中使用Android的Holo主题。 不过,我在屏幕上有一个白色背景的片段。 我在这个片段上添加了一个EditText
组件。 我试图通过设置Holo.Light主题资源的背景来覆盖主题。 但是,我的文本光标(克拉)保持白色,因此在屏幕上不可见(我可以在edittext字段中微弱地发现它)。
有谁知道我如何让EditText使用较暗的光标颜色? 我试着将EditText的风格设置为"@android:style/Widget.Holo.Light.EditText"
,但没有成功。
将android:textCursorDrawable
属性设置为@null
将导致使用android:textColor
作为光标颜色。
属性“textCursorDrawable”在API级别12和更高版本中可用
在布局中
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textCursorDrawable="@drawable/color_cursor"
/>
然后创建可绘制的xml:color_cursor
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<size android:width="3dp" />
<solid android:color="#FFFFFF" />
</shape>
EditText属性上有一个白色的光标。
看起来好像所有的答案都围绕着灌木丛。
在你的EditText
,使用属性:
android:textCursorDrawable="@drawable/black_cursor"
并将可绘制的black_cursor.xml
添加到您的资源中,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<size android:width="1dp" />
<solid android:color="#000000"/>
</shape>
如果需要,这也是创建更多不同游标的方法。
链接地址: http://www.djcxy.com/p/24253.html