-
-
Save mehmetbalbay/fb97227a7d574117492a5402fa66a80b to your computer and use it in GitHub Desktop.
android alert dialog show soft input keyboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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