我将tabWidget设置在底部。当我想编辑edittext时,键盘会升起。但是标签小部件位于键盘上方。为了支持多屏幕我设置了android:layout_weight =“1.0”。在那之后,我遇到了这个问题,我在下面添加了我的布局代码。有什么想法让TabWidget稳定在底部吗?
代码:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent" android:layout_height="fill_parent">
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabcontent" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:layout_weight="1.0">
</FrameLayout>
<TabWidget android:id="@android:id/tabs"
android:layout_gravity="bottom" android:background="@drawable/gradient_black"
android:listSelector="@color/transparent" android:layout_width="fill_parent"
android:layout_height="63dip" />
</LinearLayout>
答案 0 :(得分:4)
您可能需要调整清单中的windowSoftInputMode。这可以控制显示软键盘时屏幕的移动方式。也许您想要AdjustPan而不是默认的adjustResize?这个page有关于各种输入模式的更多信息。