本文主要是介绍Android中EditText设置editable属性为不可编辑的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
EditText的editable属性用于设置是否可被编辑,但目前已被deprecate,相关文档说用inputType属性替代,但实际上似乎又无效果,可能是个bug。
只能寻求其他方式实现EditText不可编辑的效果了。虽然editable还是可以运行。
android:editable="false"
should work, but it is deprecated, you should be using android:inputType="none"
instead.
editable
is deprecated (since API level 3). You should instead be using inputType
(with the value none
).
android:editable is deprecated. android:inputType="none" should be used instead but it contains bug and it does not work.
<EditText ...android:clickable="false" android:cursorVisible="false" android:focusable="false" android:focusableInTouchMode="false">
</EditText>
EditText editText;
editText.setKeyListener(null);
will work but it just not listening to keys.
User can see a cursor on the edittext.
You can try editText.setEnabled(false);
这篇关于Android中EditText设置editable属性为不可编辑的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!