Android: Tablayout появляется при открытой клавиатуре - PullRequest
0 голосов
/ 26 апреля 2019

Я использую TabLayout, положение которого внизу экрана. Проблема в когда клавиатура открыта, TabLayout также находится над клавиатурой.

Я хочу спрятаться за клавиатурой

В Манифесте я устанавливаю android:windowSoftInputMode="adjustResize", если я изменяю на AdjustSpan, даже панель плитки поднимается, когда клавиатура открыта.

Компоновка

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:ignore="MissingPrefix"
android:orientation="vertical">

  <android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:background="@color/white"
    android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
    app:elevation="0dp">

    <android.support.v7.widget.Toolbar
        android:id="@+id/tb_toolbar_main_activity"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="@android:color/transparent"
        app:layout_scrollFlags="enterAlways"
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center_vertical"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/tb_heading"
                fontPath="@string/font_bebas_neue_bold"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginEnd="15dp"
                android:layout_marginRight="15dp"
                android:text="@string/app_name_caps"
                android:textAlignment="center"
                android:textColor="@color/heading_color"
                android:textSize="@dimen/toolbar_title_text" />

        </LinearLayout>
    </android.support.v7.widget.Toolbar>


</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
    android:id="@+id/vp_activity_main"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:background="@color/white"/>

<android.support.design.widget.TabLayout
    android:id="@+id/tabs"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:tabBackground="@drawable/tab_back_selected"
    app:tabIndicatorHeight="0dp"
    app:tabMode="fixed"
    app:tabGravity="fill"
    app:tabSelectedTextColor="@android:color/white"
    app:tabTextAppearance="@style/MyTabLayoutTextAppearance"
    app:tabTextColor="@color/home_sub_text"
    />

Ответы [ 3 ]

1 голос
/ 26 апреля 2019

Я также столкнулся с той же проблемой, и я исправил ее, добавив код ниже.Пожалуйста, попробуйте это

В файле build.gradle

implementation 'net.yslibrary.keyboardvisibilityevent:keyboardvisibilityevent:2.2.1'

В Manifest.xml

  android:windowSoftInputMode="adjustResize"

В классе активности

TabLayout tabs = findViewById(R.id.tabs);

KeyboardVisibilityEvent.setEventListener(
                MainActivity.this,
                new KeyboardVisibilityEventListener() {
                    @Override
                    public void onVisibilityChanged(boolean isOpen) {
                        if(isOpen){
                            tabs.setVisibility(View.GONE);
                        } else {
                            tabs.setVisibility(View.VISIBLE);
                        }
                    }
                });
0 голосов
/ 26 апреля 2019
android:windowSoftInputMode="adjustPan"
0 голосов
/ 26 апреля 2019

В вашем манифесте добавьте android: windowSoftInputMode = "AdjustPan | AdjustNothing"

Попробуйте взять относительный макет в качестве родительского макета и задайте свой атрибут tableout как alignparentbottom = true.

Поместите другой макет выше этой вкладки.

Надеюсь, это поможет.

...