关于RecycleView瀑布流的使用优化建议

本文提供了关于RecycleView瀑布流使用的优化建议,包括如何正确设置scroll和exitUntilCollapsed属性,以及如何通过监听滑动事件和重写getItemType方法来避免滚动时的闪烁问题。
摘要由CSDN通过智能技术生成
关于RecycleView瀑布流的使用优化建议
不知道是不是人老了,就不想废话了,想曾经的我,开篇文章必定一大段废话,现在简洁得连废话都木有了啊~~木有了~~来来来,直接进入正题。(PS这段话不重要,跳过吧)

第一个优化:

在使用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"
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值