gpt4 book ai didi

android - 在所有 sdk 中更改 Android 中 EditText 的光标颜色

转载 作者:可可西里 更新时间:2023-11-01 18:53:33 26 4
gpt4 key购买 nike

我想在所有设备上更改 android 的 edittext 光标颜色。我该怎么做?

最佳答案

我必须使用这样的可绘制对象:

我的游标.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="@android:color/holo_blue_light"/>
<!--make sure its a solid tag not stroke or it wont work -->
</shape>

在我的编辑文本中,我设置了光标可绘制属性,如下所示:

                            <EditText
android:id="@+id/et_details"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:cursorVisible="true"
android:textCursorDrawable="@drawable/mycursor"
/>

关于android - 在所有 sdk 中更改 Android 中 EditText 的光标颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11523494/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com