Pages

Monday 25 February 2013

EditView in ListView row: focus lost when soft keyboard shows


You need to change in your AndroidManifest.xml
Add android:windowSoftInputMode="adjustPan" in the activity holding the listview. This will solve your problem.
    <activity android:name=".MyActivity"
              android:label="@string/app_name"
              android:windowSoftInputMode="adjustPan">

No comments :

Post a Comment