Reputation: 5378
I have an TabActivity
(the tabs are at bottom) which consist of EditText
, the problem is when I focus on the EditText
and the Keyboard appears the tabs go above the keyboard which they leave me with small space above, Is there any way to prevent them to go above and let them be behind the Keyboard?
Upvotes: 2
Views: 326
Reputation: 26547
Add the android:windowSoftInputMode="adjustPan"
attribute to your activity in the manifest :
<activity android:name="MyActivity"
...
android:windowSoftInputMode="adjustPan" >
</activity>
Upvotes: 3