1

最近、BottomNavigationView をフラグメントに統合しました。Googleのガイドラインに従って、スクロールすると自動的に非表示になるはずです。しかし、そうではありません!

メインレイアウトもスクロールできません。したがって、自動非表示機能がないと、メインレイアウトの下部は表示されず、タッチもできません。

以下は私のフッターレイアウトです:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.app.ui.footer.FooterFragment">

    <android.support.design.widget.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        app:itemBackground="@color/grey"
        app:itemTextColor="@color/black" />

</FrameLayout>

AutoHide 機能を有効にするために設定する必要があるフラグはありますか?

4

0 に答える 0