Skip to content

Instantly share code, notes, and snippets.

@ishitcno1
Created September 29, 2014 07:56
Show Gist options
  • Save ishitcno1/4edee611305ebcb770e7 to your computer and use it in GitHub Desktop.
Save ishitcno1/4edee611305ebcb770e7 to your computer and use it in GitHub Desktop.
android alert dialog show soft input keyboard
AlertDialog dialog = new AlertDialog.Builder(this).create();
dialog.show();
Window window = dialog.getWindow();
window.clearFlags(WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE | WindowManager.LayoutParams.FLAG_ALT_FOCUSABLE_IM);
window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment