Skip to content

Instantly share code, notes, and snippets.

View turastory's full-sized avatar
👋
Focusing

Yoon Ho Na turastory

👋
Focusing
View GitHub Profile
@turastory
turastory / ShowKeyboard.java
Last active February 22, 2018 02:47
Android - Show keyboard safely
public void showKeyboard() {
InputMethodManager imm = (InputMethodManager) getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) {
editText.postDelayed(() -> {
editText.requestFocus();
imm.showSoftInput(editText, 0); // might be flags
}, 300);
}
}