Skip to content

Instantly share code, notes, and snippets.

View mehmetbalbay's full-sized avatar
:octocat:

Mehmet Agah Balbay mehmetbalbay

:octocat:
  • Turkey
View GitHub Profile
@mehmetbalbay
mehmetbalbay / Main.java
Created September 9, 2020 08:09 — forked from ishitcno1/Main.java
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);