Android中EditText实现不可编辑解决办法
android:editable is deprecated: use an <edittext> to make it editable
android:editable is deprecated: use inputtype instead
分析:关于edittext控件的read-only问题,即: 无法通过ui更改其中的内容, 但可以选定部分内容, 进行复制.在早期的sdk, edittext有editable属性, 现在这个属性已经deprecated了.
解决方法:
其实只需一行代码就能搞定et.setkeylistener(null);
注意, 这里不是setonkeylistener, 而是setkeylistener. 此方法是textview的成员, 调用后的效果完全符合预期, 并且获得焦点后不会弹出输入法.
下面是官方文档的解释
sets the key listener to be used with this textview. this can be null to disallow user input. note that this method has significant and subtle interactions with soft keyboards and other input method: see keylistener.getcontenttype() for important details. calling this method will replace the current content type of the text view with the content type returned by the key listener.
be warned that if you want a textview with a key listener or movement method not to be focusable, or if you want a textview without a key listener or movement method to be focusable, you must call setfocusable again after calling this to get the focusability back the way you want it.
上一篇: CorelDRAW(CDR) X4设计制作元宵节招贴画实例教程
下一篇: JS字符串方法使用步骤详解
推荐阅读
-
Android中实现EditText圆角的方法
-
Android实现EditText的富文本编辑
-
Ubuntu 18.04中截图工具shutter的编辑按钮不可用的解决办法
-
Ubuntu 18.04中截图工具shutter的编辑按钮不可用的解决办法
-
Android EditText设置Filter以后(xml布局文件中maxLength不起作用的解决办法)
-
Android中EditText实现不可编辑解决办法
-
关于Android官方开发教程中EditText editText = (EditText) findViewById(R.id.editText);报错的解决办法
-
Android设置EditText不可编辑
-
Android EditText不可编辑单行显示能滑动查看内容
-
Ubuntu 18.04中截图工具shutter的编辑按钮不可用的解决办法