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" >

 

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

posted @ 2014-08-08 16:39  Entropy_lxl  阅读(649)  评论(0编辑  收藏  举报