将滚动行为添加到 coordinatorLayout 的布局时,如下所示:
<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">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/mainContent"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
mainContent是重要的部分。
真正的布局将在此容器内膨胀。
想象我的View
由RecyclerView
和屏幕底部的固定布局组成。
是否有人知道如何删除底部固定布局的滚动行为并保持RecyclerView
- Toolbar
- 隐藏行为?
答案 0 :(得分:1)
在&#39; CoordinatorLayout&#39;内滚动的视图必须是第一个,并且只能在不可滚动的视图之后。我设法通过将不可滚动的布局放在&#39; mainContent&#39;的正下方来解决问题