Is there a way to not have the tab bar slide up along with the keyboard when a user touches the textbox in a screen?

Right now, in the default implementation, along with the keyboard opening up, the tab bar moves upwards and is visible.

Thanks for your help.

link|improve this question
also experiencing this. (solution is to disable scrolling on the scrollview or loose the scrollview). Sorry but for the moment.. it seems this is the only way. Ugly, I know! Hope this helps – lupu1001 Jul 1 '11 at 16:43
feedback

1 Answer

I'm using fragments with EditText and no scroll view inside them and I still had that problem. A solution for me was to add the android:windowSoftInputMode="adjustPan" property to the activity in the manifest. Not sure if it will work for normal activities, but perhaps this is a good place to start:

<activity android:name=".MyActivity" android:windowSoftInputMode="adjustPan" />
link|improve this answer
Worked for me, Thanks – Pied Piper Sep 2 '11 at 8:46
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.