首页 > 移动平台 > 详细

android 自定义光标颜色

时间:2020-11-21 22:44:30      阅读:57      评论:0      收藏:0      [点我收藏+]

在 res/drawable 新建光标样式文件 my_cursor.xml

<shape android:shape="rectangle"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <size android:width="2dp" />
    <solid android:color="@color/black"/>
</shape>

如果只是修改单个edittext的光标样式,在edittext里添加

android:textCursorDrawable="@drawable/my_cursor"

如果是全局修改

<style name="MyAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        ...
        <item name="android:textCursorDrawable">@drawable/my_cursor</item>
        ...
</style>

 

android 自定义光标颜色

原文:https://www.cnblogs.com/ice5/p/14017333.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!