解决办法:
在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" >
菜鸟不明白原因,求高手解释。谢谢!