首页 > 系统 > Android > 正文

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

2019-12-12 03:05:21
字体:
来源:转载
供稿:网友

解决方法有以下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不显示光标的三种方法(总结)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表