【发布时间】:2015-07-06 06:59:18
【问题描述】:
我使用
在我的 editText 上禁用了 softInputpublic static void disableSoftInputFromAppearing(EditText editText) {
editText.setRawInputType(InputType.TYPE_CLASS_TEXT);
editText.setTextIsSelectable(true);
}
但现在我不知道如何启用它。启用softInput的功能将不胜感激。
【问题讨论】:
标签: android android-edittext window-soft-input-mode