我可以在android编辑文本字段中更改光标大小吗?

时间:2011-06-03 10:37:33

标签: android

我想更改在Android EditText字段中闪烁的光标的宽度和颜色。这可能吗?

1 个答案:

答案 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及以上