一个页脚(只是一个带有CoordinatorLayout
背景颜色的薄视图)显示在滚动到底部,如屏幕截图所示:
我不知道这是怎么出现的。
activity_profile.xml
:
<android.support.design.widget.CoordinatorLayout 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"
android:fitsSystemWindows="true"
tools:context="com.whiz.android.screens.main.ProfileActivity"
android:background="@color/divider">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginBottom="32dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="false"
>
<ImageView
android:id="@+id/profileBackground"
android:layout_width="match_parent"
android:layout_height="280dp"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
app:layout_collapseParallaxMultiplier="0.7"
app:contentScrim="?attr/colorPrimary" />
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="8dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:layout="@layout/fragment_posts"
>
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
(我在Fragment
中添加@id/container
这是一个简单的RecyclerView
)
当我滚动到顶部时,一切都很好,如:
答案 0 :(得分:2)
我必须将android:fitsSystemWindows="true"
添加到我的FrameLayout
,即app:layout_behavior="@string/appbar_scrolling_view_behavior"
这么简单。