我的布局如下:
<?xml version="1.0" encoding="utf-8"?>
<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.support.design.widget.AppBarLayout
android:id="@+id/expert_appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/expert_collapsing"
android:layout_width="match_parent"
android:layout_height="@dimen/expert_appbar_height"
android:fitsSystemWindows="true"
android:theme="@style/AppTheme.Dark"
app:contentScrim="@drawable/topbar_gradient"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:expandedTitleTextAppearance="@style/TextAppearance.AppCompat.Display1"
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">
<ImageView
android:id="@+id/expert_appbar_backdrop"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/privacy_gray"
android:fitsSystemWindows="true"
android:foreground="@drawable/bg_gradient"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
tools:src="@drawable/bar" />
<android.support.v7.widget.Toolbar
android:id="@+id/expert_toolbar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:theme="@style/AppTheme"
app:layout_collapseMode="pin"
app:popupTheme="@style/LightToolbarPopup">
<Space
android:id="@+id/circle_collapsed_target"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginEnd="16dp" />
</android.support.v7.widget.Toolbar>
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:padding="@dimen/double_spacing">
<TextView
android:id="@+id/expert_profile_name"
style="@style/TextAppearance.AppCompat.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/quad_spacing"
android:gravity="center"
android:textSize="17sp"
android:textStyle="bold"
tools:text="Rick Nelson" />
</LinearLayout>
</android.support.v7.widget.CardView>
<android.support.v7.widget.RecyclerView
android:id="@+id/expert_places"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="false"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
tools:listitem="@layout/item_picks_list" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/expert_avatar_logo"
android:layout_width="@dimen/expert_avatar_size"
android:layout_height="@dimen/expert_avatar_size"
android:layout_gravity="top|center_horizontal"
android:layout_marginTop="@dimen/expert_avatar_position"
android:elevation="8dp"
android:src="@drawable/larry"
app:collapsedTarget="@id/circle_collapsed_target"
app:layout_behavior="com.myapp.transition.AvatarImageLayoutBehavior" />
</android.support.design.widget.CoordinatorLayout>
您可以看到CollapsingToolbar
中有一个CoordinatorLayout
,然后是一个NestedScrollView
,其中包含一个带有一些信息的CardView
,然后是一个RecyclerView
任意数量的项目。
我希望标题向上滚动直到不再可见,有效地隐藏在AppBar
下面,并且只显示在RecyclerView
滚动的顶部。
此行为效果很好,但是通过进入NestedScrollView
,RecyclerView
不再回收了,因此大约有100个项目已经填满了内存,我的应用开始变慢并拖动。
在RecyclerView
实现NestedScrollViewChild
的情况下,人们希望他们已经准备好与NestedScrollView
一起使用,但是显然这是可以预期的,并且RecyclerView
不再是{{1 }}与之结合使用。
有什么办法可以避免这种情况?
我知道其他解决方案,例如将RecyclerView
标头放在cardview
内或在回收器视图中设置为不同的appbar
类型,但是这些选项也有缺点,但它们并不是对我有效。
我不明白Android这么难做的事。