Почему клавиатура появляется после TabBar?

В моем приложении есть tabBar и Edittext.

См. Изображение ниже:

Нормальный экран:

enter image description here

И изображение После нажатия на текст редактирования:

enter image description here

Теперь, почему эта панель вкладок поднимается вместе с клавиатурой. Я хочу, чтобы он оставался исправленным внизу, даже если пользователь открывает клавиатуру, нажимая на edittext.

Итак, что мне делать?

Помогите, пожалуйста, с этим?

Мой XML-макет для действия TabBarMain выглядит следующим образом:

    <?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="wrap_content"
    >

    <LinearLayout
        android:id="@+id/LL1"
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        >

       <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            />

      <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:layout_gravity="bottom"
            android:layout_weight="0"/>

    </LinearLayout>

</TabHost> 

Так что, пожалуйста, помогите мне в этом.

Спасибо.

5
задан waqaslam 31 January 2012 в 09:34
поделиться