Я установил свой tabWidget внизу.Когда я хочу отредактировать текст редактирования, клавиатура поднимется вверх.Но виджет вкладки находится над клавиатурой.Для поддержки нескольких экранов я установил 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>