欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

解决EditText不显示光标的三种方法(总结)

程序员文章站 2022-05-30 18:19:48
解决方法有以下3种 1、在edittext中加入以下属性 android:cursorvisible="true" android:textcursordra...

解决方法有以下3种

1、在edittext中加入以下属性

android:cursorvisible="true"
android:textcursordrawable="@null"

2、在edittext中加入以下属性

android:cursorvisible="true"
android:textcursordrawable="@drawable/test_cursor"

对应的drawable文件

  <?xml version="1.0" encoding="utf-8"?>
  <shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <size android:width="1dp" />

    <span style="font-family: arial, helvetica, sans-serif;">
 
 <!-- 光标宽度可以自己定义 --></span>

    <solid android:color="#008000" />
 
 <!-- 光标颜色可以自己定义 -->
  </shape>

3、如果以上没有效果就请用这个

明确指定edittext的inputtype属性值inputtype属性中的textcapsentences

不要用这个,国内手机好像没有用到这个,个人证实而已,用text或者textmultiline

android:inputtype="text|textmultiline"

以上这篇解决edittext不显示光标的三种方法(总结)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。