TabHost随着输入法软键盘出现而上浮的问题

解决办法:

在androidMenifest.xml中的TabHost对应的activity中添加如下代码:

android:screenOrientation="portrait"
android:smallScreens="true"
android:windowSoftInputMode="adjustPan"

结果如下所示:

<activity android:name="你的TabHost对应的activity的名字"
android:screenOrientation="portrait"
android:smallScreens="true"
android:windowSoftInputMode="adjustPan" >

菜鸟不明白原因,求高手解释。谢谢!

原文地址:https://www.cnblogs.com/lixiaolun/p/3899695.html