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