1

我想始终显示输入((InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE))

当我在:

Configuration.ORIENTATION_LANDSCAPE mode

单击输入后或单击输入后发送。

我试过这个:

if (event != null && 
    event.getKeyCode() == KeyEvent.KEYCODE_ENTER && 
    event.getAction() == KeyEvent.ACTION_DOWN) {
    if (Screen.getScreenOrientation(mycontext) == Configuration.ORIENTATION_LANDSCAPE) 
        Utils.hideInput(mycontext, EditTextSend);
    else
        Utils.showInput(mycontext, EditTextSend);

但这对我不起作用。是否可以仅在用户单击返回时才隐藏输入?

4

2 回答 2

0

我的解决方案很简单:

return true;
于 2013-01-12T18:05:30.433 回答
-1

您可以控制键盘的可见性Activitymanifest请查看:http: //developer.android.com/guide/topics/manifest/activity-element.html#wsoft

要显示键盘,请始终使用:

<activity android:windowSoftInputMode="stateAlwaysVisible" ... />
于 2012-12-24T21:52:12.823 回答