Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个视图,editText但键盘没有出现。经过大量研究,我能找到的唯一合适的事情是如何在第一次加载视图时显示键盘。但是,如果用户关闭键盘,似乎无法将其取回。
editText
editText每次用户输入该字段时,如何使键盘出现?
已经讨论过很多次了。
使用以下代码段。
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
每当您在 EditText 框中单击以键入文本时,android 键盘就会自动打开。