“Android oculta el teclado suave” Código de respuesta

Android oculta el teclado suave

// Available on Android API 30+ / AndroidX Core 1.5+
public void hideKeyboard(View view) {
  ViewCompat.getWindowInsetsController(this)
            .hide(WindowInsetsCompat.Type.ime());
}

// @see https://youtu.be/acC7SR1EXsI
// @see https://developer.android.com/reference/androidx/core/view/ViewCompat#getWindowInsetsController(android.view.View)
// @see https://developer.android.com/reference/androidx/core/view/WindowInsetsControllerCompat#hide(int)
// @see https://developer.android.com/reference/androidx/core/view/WindowInsetsCompat.Type#ime()
Merlin4 (personal)

Tecillo de ocultación de Android

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));
Merlin4 (ranken)

Android oculta el teclado suave

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

// call from inside an Activity / Fragment
hideKeyboard(view);
Merlin4 (personal)

Android Cómo no mostrar el teclado

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);
Ill Ibis

teclado desestimado de Android

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

ocultar el teclado Android

//With AndroidX:
fun View.hideKeyboard() = ViewCompat.getWindowInsetsController(this)
    ?.hide(WindowInsetsCompat.Type.ime())
Obedient Owl

Respuestas similares a “Android oculta el teclado suave”

Preguntas similares a “Android oculta el teclado suave”

Más respuestas relacionadas con “Android oculta el teclado suave” en Java

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código