Hesham Saeed
Hesham Saeed

Reputation: 5378

Tabs behind Keyboard - Android

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

Answers (1)

Dalmas
Dalmas

Reputation: 26547

Add the android:windowSoftInputMode="adjustPan" attribute to your activity in the manifest :

<activity android:name="MyActivity"
    ...
    android:windowSoftInputMode="adjustPan" >
</activity>

Upvotes: 3

Related Questions