对于我的Android应用,我需要在用户点击图片时显示数字键盘,但不显示EditText。 我想在用户按下特定键时收到通知,以便我可以适当地处理UI。
怎么可能呢? 谢谢
答案 0 :(得分:1)
试试这个......
InputMethodManager inputMethodManager = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
inputMethodManager.toggleSoftInputFromWindow(imageview_reference.getApplicationWindowToken(), InputMethodManager.SHOW_FORCED, 0);