如何在EditText中使用框形光标?

时间:2019-02-17 06:53:29

标签: android android-edittext

我已经在Android 9.0上开发了类似应用程序的控制台。
我想在EditText中使用框形光标。有没有办法改变光标形状?

我想要更改光标形状,如下所示:

enter image description here

如何更改光标形状?

1 个答案:

答案 0 :(得分:1)

您可以在编辑文本中使用android:textCursorDrawable="@drawable/mycursor"并创建如下形状:

mycursor.xml:

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