Is There Any Way To Stop The Tabs Coming Up With The Keyboard In Android?
I am making an app that supports all versions of android (just in case it is relevant), but when the user clicks on an app, the keyboard pops up and moves the tabs with it. Is ther
Solution 1:
Try giving android:windowSoftInputMode="adjustPan" inside the manifest file for the activity.
Solution 2:
write this android:windowSoftInputMode="adjustPan" in tabActivity class in manifest file.
Post a Comment for "Is There Any Way To Stop The Tabs Coming Up With The Keyboard In Android?"