В моем приложении есть tabBar и Edittext.
См. Изображение ниже:
Обычный экран:
И изображение после нажатия на текст редактирования:
Теперь, почему эта вкладка идет вверх вместе с клавиатурой.
Я хочу, чтобы он оставался фиксированным внизу, даже если пользователь откроет клавиатуру, нажав на 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>
Так что, пожалуйста, помогите мне в этом.
Спасибо.