正如标题所暗示的那样,我的活动有一个FrameLayout
,其中包含Fragments
[我不使用标签,只是交易]。我还有NavigationDrawer
和Toolbar
。所有这些都很好。
问题在于我尝试在CollapsingToolbarLayout
布局中添加Activity
并在RecyclerView
卷轴中设置Fragment
并控制崩溃CollapsingToolbarLayout
。
通过下面显示的设置,我可以使用NavigationDrawer
,查看Toolbar
和展开的CollapsingToolbarLayout
内部没有图片(奇数问题)。我将Fragment
加载到包含带有10个测试视图的FrameLayout
的{{1}}中。这在CollapsingToolbar下面滚动得很好,但它不会崩溃。
RecyclerView
<android.support.v4.widget.DrawerLayout
android:id="@+id/dl_drawer_layout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.design.widget.CoordinatorLayout
android:id="@+id/cl_dashboard"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.AppBarLayout
android:id="@+id/abl_dashboard"
android:layout_width="match_parent"
android:layout_height="200dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/ctb_dashboard"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="@color/the_color"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<ImageView
android:id="@+id/iv_dashboard_header"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:src="@mipmap/the_image"
android:fitsSystemWindows="true"
app:layout_collapseMode="parallax"/>
<include
android:id="@+id/toolbar"
layout="@layout/overlay_toolbar"
app:layout_collapseMode="pin"/>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<FrameLayout
android:id="@+id/fl_dashboard_fragmentframe"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
</FrameLayout>
</android.support.design.widget.CoordinatorLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nv_navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/overlay_drawer_header"
app:menu="@menu/menu_drawer"/>
</android.support.v4.widget.DrawerLayout>
我不明白为什么这不起作用,而且我已经完成了大量的文档和示例而没有运气。任何帮助或建议将不胜感激。
答案 0 :(得分:2)
事实证明,我用于Toolbar
的布局没有正确的高度值。
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/get_blue"
android:elevation="5dp"
android:minHeight="?attr/actionBarSize"
app:theme="@style/actionbar_getblue">
</android.support.v7.widget.Toolbar>
<include
android:id="@+id/toolbar"
layout="@layout/overlay_toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"/>
在对身高进行单次调整后,CollapsingToolbarLayout
开始完美运作。
答案 1 :(得分:1)
app:layout_behavior应该应用于RecyclerView或任何其他能够嵌套滚动的视图,例如NestedScrollView。
从codepath中查看本教程:https://guides.codepath.com/android/Handling-Scrolls-with-CoordinatorLayout
你可以使用app:layout_behavior =&#34; @ string / appbar_scrolling_view_behavior&#34;在RecyclerView上你有片段。