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);
探讨并解决EditText组件不可编辑属性editable被弃用后,如何通过inputType属性或其他方式实现不可编辑效果的问题,包括可能存在的bug及解决策略。
4941

被折叠的 条评论
为什么被折叠?



