2012-07-18 12 views

risposta

8

Si può provare:

android:windowSoftInputMode="stateHidden" 

per la vostra attività in AndroidManifest.xml

+0

Questo ha funzionato per me – user1255273

5

Aggiungi queste due linee al layout principale.

android:descendantFocusability="beforeDescendants" 
android:focusableInTouchMode="true" 
+1

Opere come un fascino! +1 –

2

Aggiungere nella definizione di layout (in file XML) questa seguenti opzioni:

android:focusable="true" android:focusableInTouchMode="true" 
Problemi correlati