I have to use stateHidden in Manifest for some reason. But I also need to display keyboard as default for a onCreate(). But whatever I do, the keyboard still not pops-up as default.
I have tried:
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(mText, InputMethodManager.SHOW_IMPLICIT);
And:
InputMethodManager inputManager = (InputMethodManager)mText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.showSoftInput(mText, 0);