如何设置edittext默认不获取光标
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置edittext默认不获取光标相关的知识,希望对你有一定的参考价值。
参考技术A EditText et = (EditText) findViewById(R.id.etTest);et.clearFocus(); //清除焦点本回答被提问者和网友采纳
Android输入时EditText光标不显示的解决方法
<EditText android:cursorVisible="true" android:textCursorDrawable="@null"/>
即设置textCursorDrawable为@null,这样光标就默认显示字体的颜色,也可以设置一个自定义的drawable。
以上是关于如何设置edittext默认不获取光标的主要内容,如果未能解决你的问题,请参考以下文章