Answers for "button hide inside keyboard in android"

4

android hide keyboard

public void hideKeyboard(Context context, View view) {
    InputMethodManager imm = (InputMethodManager) context.getSystemService(Activity.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
0

button hidden by keyboard android

android:windowSoftInputMode="adjustResize"
Posted by: Guest on June-29-2021

Code answers related to "button hide inside keyboard in android"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language