Android keyboard puts tab bar on top

android, android-tabhost, keyboard

Solution

add these properties for your activity in manifest file:

android:windowSoftInputMode="stateHidden|adjustResize|adjustPan"

Hope this helps

Problem

I have a little problem when I open keyboard in my application. I have a tab bar which is on bottom of page and in some situations, not always when I click on edit text and keyboard shows up, it's moving my tab bar on top of it. Here is an example : So my question is : Is there any way to disable this. I want my tab bar to stay hidden under keyboard when it shows up. Thanks in advance!

Original source