Answers for "android hide keyboard on button click"

8

android hide keyboard

public void hideKeyboard(Context context, View view) {
    InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}

// call from inside an Activity...
hideKeyboard(this, view);
hideKeyboard(this, getCurrentFocus());
hideKeyboard(this, getWindow().getDecorView());
hideKeyboard(this, findViewById(android.R.id.content));
Posted by: Guest on February-11-2021
-1

How to hide keybord on Android

fun hideKeybord() {
            val view = this.currentFocus
            if (view != null) {
                val hideKey = getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
                hideKey.hideSoftInputFromWindow(view.windowToken, 0)
            } else {
                window.setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN)
            }
        }

// Call your function whatever you want

	hideKeybord()
Posted by: Guest on February-01-2022

Code answers related to "android hide keyboard on button click"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language