本文介绍了如何prevent键盘出现的EditText上未启用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的活动有一个的EditText
按理说它是不可编辑,直到用户点击了屏幕上编辑按钮。
My activity has an EditText
which is supposedly not editable until user clicks on edit button for the screen.
我做了 edit.setEnabled(假)
但仍然是一个键盘会出现用户和值可以被添加到的EditText
经由尽管屏幕看起来有点灰色的键盘在屏幕上。还有什么我必须做的prevent编辑的EditText
,直到用户专门推出一个编辑按钮。
I did edit.setEnabled(false)
but still a keyboard appears for the user and values can be added to the EditText
in the screen via the keyboard even though the screen might look a bit greyed out. What else do I have to do to prevent editing of the EditText
until user has specifically pushed an edit button.
谢谢,史蒂夫
推荐答案
注意的 setEditable
是depecrated。
Attention that setEditable
is depecrated.
您可以使用:
setInputType(EditorInfo.TYPE_CLASS_TEXT)
要打开键盘上。
setInputType(EditorInfo.TYPE_NULL)
要关闭键盘关闭。
这篇关于如何prevent键盘出现的EditText上未启用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!