我想更改在Android EditText字段中闪烁的光标的宽度和颜色。这可能吗?
答案 0 :(得分:24)
<强> RES /抽拉/ cursor_red.xml:强>
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<size
android:width="5dip" />
<solid
android:color="@color/red" />
</shape>
您的EditText中的:
android:textCursorDrawable="@drawable/cursor_red"
注意:仅限API 12及以上