Skip to content

Instantly share code, notes, and snippets.

@scruffyfox
Created April 18, 2012 16:40
Show Gist options
  • Save scruffyfox/2414891 to your computer and use it in GitHub Desktop.
Save scruffyfox/2414891 to your computer and use it in GitHub Desktop.
Show keyboard for edit text programatically
editText.requestFocus();
editText.requestFocusFromTouch();
InputMethodManager m = (InputMethodManager)mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
m.showSoftInput(editText, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment