如何在EditText中使用框光标?

问题描述 投票:2回答:1

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

我想改变游标形状,如下所示:

enter image description here

我怎样才能改变光标形状?

android android-edittext
1个回答
1
投票

您可以在edittext中使用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>
© www.soinside.com 2019 - 2024. All rights reserved.