“Android отклоняет клавиатуру” Ответ

Android отклоняет клавиатуру

InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0);
Serial Koder

Закрыть клавиатуру Android

public static void hideSoftKeyboard(Activity activity) {
    InputMethodManager inputMethodManager = 
        (InputMethodManager) activity.getSystemService(
            Activity.INPUT_METHOD_SERVICE);
    inputMethodManager.hideSoftInputFromWindow(
        activity.getCurrentFocus().getWindowToken(), 0);
}
Hina

Ответы похожие на “Android отклоняет клавиатуру”

Вопросы похожие на “Android отклоняет клавиатуру”

Больше похожих ответов на “Android отклоняет клавиатуру” по Java

Смотреть популярные ответы по языку

Смотреть другие языки программирования