I would like to show the input ALWAYS ((InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE))
when I am in:
Configuration.ORIENTATION_LANDSCAPE mode
AFTER enter is clicked or Send is clicked on the input.
I tried this:
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);
But that is not working for me.
Is it possible to not hide the input only when the user click back?
My solution was as simple as: