我将 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>