更改Edittext光标的颜色与粗细

Posted 高速蜗牛a

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改Edittext光标的颜色与粗细相关的知识,希望对你有一定的参考价值。

有些公司的产品要求我们修改EditText光标的颜色与粗细,如下图所示,其实我们只需两步就能轻松搞定:





1、在drawable文件夹下创建一个带shape属性的xml文件:edittext_bg.xml

<?xml version="1.0" encoding="utf-8"?>  
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">  
    <solid android:color="#ff0000"/>   	<!-- 光标的颜色 -->
    <size android:width="2dp"/>  	<!-- 光标的宽度 -->
</shape>  
其中solid是光标的颜色,size是光标的宽度。


2、在布局文件中给EditText设置背景

<EditText 
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textCursorDrawable="@drawable/edittext_bg" />

这样,我们就可以自定义EditText光标的颜色与粗细了。



以上是关于更改Edittext光标的颜色与粗细的主要内容,如果未能解决你的问题,请参考以下文章

自定义水平ProgresBar,更改其颜色和粗细

Cocoa Touch:如何改变 UIView 的边框颜色和粗细?

R语言R原生以及ggplot2设置线条类型宽度(粗细)颜色的函数ggplot2手动自定义设置线条类型粗细颜色函数(line typesthicknesscolour)

如何在 android 中更改 EditText 气泡颜色(光标下)?

android中如何更改EditText 的光标颜色?

在不改变字体大小的情况下控制字体粗细