关于RecycleView瀑布流的使用优化建议
不知道是不是人老了,就不想废话了,想曾经的我,开篇文章必定一大段废话,现在简洁得连废话都木有了啊~~木有了~~来来来,直接进入正题。(PS这段话不重要,跳过吧)
第一个优化:
在使用RecycleView的时候建议不要嵌套ScrollVIew ,不要嵌套ScrollVIew ,不要嵌套ScrollVIew ,这真的很重要,如果嵌套使用会导致RecycleView的回收机制失效,此时加载数据过多就与OOM不远了,亲们,切记切记。
那么如果出现复杂布局怎么办?比如这种样式的布局,如下图1
这时可以考虑使用Support包的CoordinatorLayout新布局,这个布局能实现很多不错的效果,可以是这样的图2
这样的图3
还可以是这样的图4
图4的布局代码如下:
第一个优化:
在使用RecycleView的时候建议不要嵌套ScrollVIew ,不要嵌套ScrollVIew ,不要嵌套ScrollVIew ,这真的很重要,如果嵌套使用会导致RecycleView的回收机制失效,此时加载数据过多就与OOM不远了,亲们,切记切记。
那么如果出现复杂布局怎么办?比如这种样式的布局,如下图1
这时可以考虑使用Support包的CoordinatorLayout新布局,这个布局能实现很多不错的效果,可以是这样的图2
这样的图3
还可以是这样的图4
图4的布局代码如下:
<android.support.design.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<android.support.v7.widget.RecyclerView
android:id="@+id/home_recyclerview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="18dp"
android:layout_marginRight="8dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout_test_nested"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/transparent">
<android.support.design.widget.CollapsingToolbarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipChildren="false"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fadeScrollbars="false"
android:focusable="true"
android:focusableInTouchMode="true"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="31dp"
android:layout_marginTop="45dp"
android:layout_marginRight="31dp"
android:orientation="horizontal"
android:visibility="gone">
<LinearLayout
android:id="@+id/home_hive"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
<ImageView
android:layout_width="41dp"
android:layout_height="41dp"
android:src="@mipmap/home_xingcheng" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:gravity="center"