A tutti,NumberPicker in AlertDialog attiva sempre la tastiera. Come disabilitare questo?
Sto cercando di far funzionare un NumberPicker semplice in un AlertDialog. Il problema è che ogni volta che aumento/diminuiso il valore nel numeropicker, la tastiera si attiva.
Ci sono molti post che descrivono questo problema, ma nessuno dei suggerimenti funziona. ho provato:
android:configChanges="keyboard|keyboardHidden"
E
inputManager.hideSoftInputFromWindow(currentView.getWindowToken(), 0);
E
getWindow().setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
ho provato a chiamare queste funzioni, prima e dopo l'inizializzazione (dialog.show()), su eventi di pressione (usando ovviamente gli ascoltatori), ecc. ma senza fortuna finora.
Il codice 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>
E la funzione di chiamata:
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();
Qualsiasi aiuto apprezzato
Barry
Puoi anche impostarlo in XML: android: descendantFocusability = "blocksDescendants" – Borzh