Two ArrayList one RecyclerView Adapter

前端 未结 4 925
醉酒成梦
醉酒成梦 2020-12-03 15:55

I have a chat screen where i can chat with other user, i am sending chat data (message,time and sender via List) to RecyclerAdapter which populate chat views with data.Now i

4条回答
  •  萌比男神i
    2020-12-03 16:26

    First you need to combine both array in single arraylist like.. firsArrlist.addAll(secondArrList);

    and pass into recyclerview adapter and migrate with some flag and take another viewholder for particular flag to set that view in recyclerview.

    And total count is must both firstArrlist.size + secondArrList.size

提交回复
热议问题