3

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

4

1 回答 1

4

您可能需要调整清单中的windowSoftInputMode。这控制在显示软键盘时屏幕如何移动。也许您想要 AdjustPan 而不是默认的 adjustResize?此页面包含有关各种输入模式的更多信息。

于 2010-06-14T18:11:53.530 回答