【Android】设置光标颜色和图标

创建主题

该主题可以更改文字下方拖拽手柄的颜色

xml 复制代码
<?xml version="1.0" encoding="utf-8"?>
<resources>
  <style name="RedTextCursor">
    <item name="android:colorControlActivated">#FF0000</item>
  </style>
</resources>
应用主题到Dialog/PopupWindow/DialogFragment/Activity

根据组件类型,使用对应的主题设置方式

kotlin 复制代码
class MyDialog : Dialog(context, R.style.RedTextCursor)
创建光标资源

用于改变光标颜色和形状

xml 复制代码
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <size android:width="@dimen/dp_2" />
    <solid android:color="@color/primary_200" />
</shape>
设置TextView光标
xml 复制代码
<TextView
	android:textCursorDrawable="@drawable/shape_cursor_red"/>
相关推荐
梦幻通灵7 小时前
Mysql字段判空实用技巧
android·数据库·mysql
龘龍龙9 小时前
Python基础(九)
android·开发语言·python
gjc59210 小时前
MySQL隐蔽 BUG:组合条件查询无故返回空集?深度排查与规避方案
android·数据库·mysql·bug
梨落秋霜10 小时前
Python入门篇【元组】
android·数据库·python
zh_xuan10 小时前
kotlin定义函数和变量
android·开发语言·kotlin
Digitally12 小时前
Android 上的联系人备份和恢复:5 种可靠且方便的方法
android
默|笙13 小时前
【Linux】进程控制(3)进程程序替换
android·linux·运维
国家二级编程爱好者13 小时前
Android Lottie使用,如何自定义LottieView?
android·前端
bst@微胖子13 小时前
CrewAI+FastAPI实现营销战略协助智能体项目
android·数据库·fastapi
子林Android14 小时前
AndroidStudio修改.android、.gradle、.AndroidStudio路径,释放C盘空间
android·android studio