Android - 显示没有EditText

时间:2015-10-24 18:01:01

标签: java android

对于我的Android应用,我需要在用户点击图片时显示数字键盘,但不显示EditText。 我想在用户按下特定键时收到通知,以便我可以适当地处理UI。

怎么可能呢? 谢谢

1 个答案:

答案 0 :(得分:1)

试试这个......

InputMethodManager inputMethodManager =  (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
inputMethodManager.toggleSoftInputFromWindow(imageview_reference.getApplicationWindowToken(),     InputMethodManager.SHOW_FORCED, 0);