type - windowsoftinputmode android
NumberPicker en AlertDialog siempre activa el teclado. ¿Cómo deshabilitar esto? (4)
A todos,
Estoy intentando que un simple NumberPicker funcione en un AlertDialog. El problema es que siempre que aumente / disminuya el valor en el selector de números, el teclado se activa.
Hay muchas publicaciones que describen este problema, pero ninguna de las sugerencias funciona. Yo he tratado:
android:configChanges="keyboard|keyboardHidden"
Y
inputManager.hideSoftInputFromWindow(currentView.getWindowToken(), 0);
Y
getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
He intentado llamar a estas funciones antes y después de la inicialización (dialog.show ()), en eventos de pulsación de teclas (utilizando escuchas obviamente), etc., pero hasta ahora no he tenido suerte.
El código completo:
popup.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<NumberPicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/myNumber"
android:configChanges="keyboard|keyboardHidden"
/>
</RelativeLayout>
Y la función de llamada:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setPositiveButton(android.R.string.ok, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
return;
} });
builder.setNegativeButton(android.R.string.cancel, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
return;
} });
View view = getLayoutInflater().inflate(R.layout.popup, null);
builder.setView (view);
final AlertDialog dialog = builder.create ();
NumberPicker picker = (NumberPicker) view.findViewById(R.id.myNumber);
picker.setMinValue(0);
picker.setMaxValue(999);
dialog.getWindow().
setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
dialog.show();
Cualquier ayuda apreciada
Barry
Dado que no hay acceso a los botones NumberPicker, es "imposible" hacerlo.
Hice un rápido y sucio truco para lidiar con eso.
Primero agregue el enfoque del comedor al diseño, en este caso, el botón con tamaño 0:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<NumberPicker
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/myNumber"
android:configChanges="keyboard|keyboardHidden"
/>
<Button
android:id="@+id/myBtn"
android:layout_width="0dp"
android:layout_height="0dp"
/>
</RelativeLayout>
Necesitamos detectar el evento de hacer clic en los botones de aumento / disminución, elegí OnValueChangedListener, no pude encontrar algo mejor.
EditText edit = null;
try {
final Field[] fields = picker.getClass().getDeclaredFields();
for (Field f : fields) {
if (EditText.class.equals(f.getType())) {
f.setAccessible(true);
edit = (EditText) f.get(picker);
}
}
} catch (IllegalAccessException e) {
e.printStackTrace(); //To change body of catch statement use File | Settings | File Templates.
}
if (edit != null) {
final EditText finalEdit = edit;
final InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
picker.setOnValueChangedListener(new NumberPicker.OnValueChangeListener() {
@Override
public void onValueChange(NumberPicker numberPicker, int i, int i1) {
dialog.findViewById(R.id.myBtn).requestFocusFromTouch();
imm.hideSoftInputFromWindow(finalEdit.getWindowToken(), 0);
}
});
}
Esta no es una solución recomendada. Espero que alguien encuentre algo mejor. Utilizar solo para fines educativos ;-)
En realidad, aunque la solución anterior funciona perfectamente, hay una manera más fácil.
picker.setDescendantFocusability(NumberPicker.FOCUS_BLOCK_DESCENDANTS);
Esto es todo lo que se necesita. ¡¡¡¡De todos modos gracias por las respuestas!!!! :-)
XML:
<NumberPicker
...
android:descendantFocusability="blocksDescendants" />
android:configChanges
atributo android:configChanges
pertenece a su archivo Manifest.xml
, no al diseño. Pero si está escondiendo el teclado desde allí, probablemente sea el mejor de usar
android:windowSoftInputMode="stateAlwaysHidden"
También debe tratar de usar getWindow()
en su Activity
lugar de solo el Dialog
y ver si eso ayuda. Esta es probablemente la mejor solución ya que la primera (que se oculta del manifiesto) mantendrá el teclado oculto durante toda la Actividad.