在 CoordinatorLayout 中使用时,页脚会滚出屏幕

footer scrolls off screen when used in CoordinatorLayout

我有包含片段的 HomeActivity,底部有自定义导航视图,如下所示。

通过单击个人资料图片,它会将片段替换为 UserProfileView 片段。 userProfileView 片段在 coordinatorLayout 中有折叠工具栏。

userprofileview.xml

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:bind="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">

    <data>

        <variable
            name="resource"
            type="com.example.app.model.ResourceData" />


        <import type="android.view.View" />

    </data>

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/bg_home"
        android:fitsSystemWindows="true">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/app_bar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/bg_home">

            <android.support.design.widget.CollapsingToolbarLayout
                android:id="@+id/toolbar_layout"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:layout_scrollFlags="scroll|exitUntilCollapsed">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="vertical">


                </LinearLayout>
            </android.support.design.widget.CollapsingToolbarLayout>
        </android.support.design.widget.AppBarLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/_10sdp"
                android:orientation="horizontal">

                <ImageView
                    android:id="@+id/ic_list"
                    android:layout_width="@dimen/_17sdp"
                    android:layout_height="@dimen/_17sdp"
                    android:layout_gravity="center"
                    android:layout_marginLeft="@dimen/_10sdp"
                    android:background="@drawable/ic_list_selected" />

                <ImageView
                    android:id="@+id/ic_grid_view"
                    android:layout_width="@dimen/_15sdp"
                    android:layout_height="@dimen/_15sdp"
                    android:layout_gravity="center"
                    android:layout_marginLeft="@dimen/_10sdp"
                    android:background="@drawable/ic_grid_unselected" />
            </LinearLayout>

            <android.support.v7.widget.RecyclerView
                android:visibility="gone"
                android:id="@+id/rv_post"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                app:resource="@{resource}" />

        </LinearLayout>
    </android.support.design.widget.CoordinatorLayout>
</layout>

问题是当我从底部导航菜单单击任何其他菜单时,它会滚出屏幕,如下所示。

在 UserProfileView 片段中添加 CoordinatorLayout 后出现此问题。

如果我用 LinearLayout 替换 CoordinatorLayout 那么它工作正常但没有获得折叠工具栏的功能。

谢谢!

android:fitsSystemWindows="true" 在您的 fragment_user_profile.xml 中导致问题。简单...它使您的抽屉布局看起来全屏。

粗略地说,user 屏幕保持顶部指标边距,而 home 屏幕则没有。所以主屏幕随着指示器大小向上移动。 (其实不是,fitsSystemWindows详情: Why would I want to fitsSystemWindows)

因此,从 fragment_user_profile.xml 中删除 fitsSystemWindows 将解决您的问题。

并且我建议您将 fitsSystemWindows 添加到 activity_main.xml 中的 container_body,但我不确定实际代码是什么,所以这是您的决定。