Try to set windowSoftInputMode to adjustPan in activity declaration in AndroidManifest.xml as follows:
... <activity android:name=".activity.Activity" android:label="@string/activity" android:windowSoftInputMode="adjustPan" /> ... It should help give your activity better user experience. Check http://android-developers.blogspot.com/2009/04/updating-applications-for-on-screen.html for more info about it. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

