RecycleView嵌套与多级列表

首先这并不是多级列表实现的最优方式,多级列表从表现形式上来看无非就是数据+缩进(或者颜色,字体大小等),通过读个RecycleView且套可以实现但是如果列表层级过多则会比较累赘,前面说到的缩进等表现形式完全可以在一个RecycleView中来实现具体可以参考以下链接
[1]: https://www.jianshu.com/p/b76572fb4e60

布局文件

主界面布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="rar.uchannel.com.recyclelviewandrecycleview.MainActivity">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycleView"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</android.support.constraint.ConstraintLayout>

主RecycleView的Item的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical">

  <TextView
      android:id="@+id/tv"
      android:layout_width="match_parent"
      android:layout_height="30dp"
      android:background="@color/colorPrimary"
      android:gravity="center" />

  <LinearLayout
      android:id="@+id/ll"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content">

      <android.support.v7.widget.RecyclerView
          android:id="@+id/recycleView_son"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content" />
  </LinearLayout>

</LinearLayout>

子RecycleView的Item的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ll_other"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:id="@+id/tv_other"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

这玩意就不多说了,主要讲嵌套中会出现的问题

主RecycleView的适配器

 public class CustomAdapter extends RecyclerView.Adapter<CustomViewHolder> {
     private Context context;
     private List<String> data;

     CustomAdapter(Context context, List<String> data) {
         this.context = context;
         this.data = data;
     }

     @Override
     public CustomViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
         return new CustomViewHolder(LayoutInflater.from(context).inflate(R.layout.item_for_recycleview, parent, false));
     }


     @Override
     public void onBindViewHolder(final CustomViewHolder holder, final int position) {
         holder.textView.setText(data.get(position));
         if (onItemClickListener != null) {
             holder.textView.setOnClickListener(new View.OnClickListener() {
                 @Override
                 public void onClick(View view) {
                     Log.e("xxx", holder.isRecyclable() + "");
                     int pos = holder.getLayoutPosition();
                     onItemClickListener.onItemClick(holder, pos);
                     holder.setIsRecyclable(false);//view复用造成一处点击多处响应的问题 设置为被点击的item不可以被复用,
                     Log.e("xxx", holder.isRecyclable() + "");
                 }
             });
         }
     }

     @Override
     public int getItemCount() {
         return data.size();
     }

     void setOnItemClickListener(OnItemClickListener itemClickListener) {
         this.onItemClickListener = itemClickListener;
     }

     private OnItemClickListener onItemClickListener;

     interface OnItemClickListener {
         void onItemClick(CustomViewHolder holder, int position);
     }
 }

问题1:点击RecycleView中的某个Item会出现多个Item响应的问题,可能有规律。
解决:RecycleView中的点击事件不要直接在Adapter中实现,通过回调传入在外部实现,回调接口中参数为ViewHolder是应为某些情况下点击事件有一个控件响应之后去修改其他控件的内容。可以修改为对应View

问题2:点击一个RecycleView中的Item展开其次级列表时后面的Item也会复用当前已经展开的Item(这个跟上面有点类似)
解决: 这里解决方案比较多设置Tag之类的都是可行的,究其原理无非是展开的Item不进行复用,这里采用的方式是直接设置Item不可复用holder.setIsRecyclable(false);这里仅仅对单个已经点击的item有效,而且当该item画出屏幕外再次滑动回到屏幕内时其复用状态会重新更新为可以复用,可以看到代码中的两个Log,当Item出现在屏幕内首次点击之前该Item都是可以复用的,对性能影响较小。

这里滑动冲突不需要进行处理,应为RecycleView布局使用的是android:layout_height="wrap_content"如果各位在且套的时候要求内部子RecycleView长度固定且可以滑动就需要通过setScrollEnabled处理滑动冲突,(额,直说吧这里我根本没尝试...)

MainActivity代码

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initView();
    }

    List<String> getData() {
        ArrayList<String> strings = new ArrayList<>();
        for (int i = 0; i < 100; i++) {
            strings.add("i=" + i);
        }
        return strings;
    }

    List<String> getData2Inner() {
        ArrayList<String> strings = new ArrayList<>();
        for (int i = 0; i < 5; i++) {
            strings.add("i=" + i);
        }
        return strings;
    }

    void initView() {
        RecyclerView recyclerView = findViewById(R.id.recycleView);
        LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);
        linearLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
        final CustomAdapter adapter = new CustomAdapter(this, getData());
        adapter.setOnItemClickListener(new CustomAdapter.OnItemClickListener() {
            @Override
            public void onItemClick(CustomViewHolder holder, int position) {
                LinearLayoutManager llm = new LinearLayoutManager(MainActivity.this);
                llm.setOrientation(LinearLayoutManager.VERTICAL);
                InnerAdapter innerAdapter = new InnerAdapter(MainActivity.this, getData2Inner());
                holder.recyclerView.setLayoutManager(llm);
                holder.recyclerView.setAdapter(innerAdapter);
                ViewGroup.LayoutParams layoutParams = holder.linearLayout.getLayoutParams();
                layoutParams.height = 0;
                holder.linearLayout.setLayoutParams(layoutParams);
                startAnimation(holder.linearLayout);
            }
        });
        recyclerView.setAdapter(adapter);
        recyclerView.setLayoutManager(linearLayoutManager);
    }


    public void startAnimation(final View view) {
        ValueAnimator animator;
        if (view.getHeight() == 0) {
            animator = ValueAnimator.ofInt(0, getMeasureHeight(view));
            animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
                @Override
                public void onAnimationUpdate(ValueAnimator animation) {
                    ViewGroup.LayoutParams layoutParams = view.getLayoutParams();
                    layoutParams.height = (int) animation.getAnimatedValue();
                    view.setLayoutParams(layoutParams);
                }
            });

        } else {//if (view.getHeight() == getMeasureHeight(view))
            animator = ValueAnimator.ofInt(view.getHeight(), 0);
            animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
                @Override
                public void onAnimationUpdate(ValueAnimator animation) {
                    ViewGroup.LayoutParams layoutParams = view.getLayoutParams();
                    layoutParams.height = (int) animation.getAnimatedValue();
                    view.setLayoutParams(layoutParams);
                }
            });
        }
        animator.setDuration(1000);
        animator.start();
    }

    /**
     * 测量控件的显示的时候的真实高度
     *
     * @param view target view
     * @return target view real height
     */
    public int getMeasureHeight(View view) {
        int w = View.MeasureSpec.makeMeasureSpec(0,
                View.MeasureSpec.UNSPECIFIED);
        int h = View.MeasureSpec.makeMeasureSpec(0,
                View.MeasureSpec.UNSPECIFIED);
        view.measure(w, h);
        return view.getMeasuredHeight();
    }
}

其他ViewHolder和子Adapter就不贴了,没有什么需要注意的地方改怎么写就怎么写

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容