Add two sections in recyclerview android

后端 未结 6 1085
天命终不由人
天命终不由人 2020-12-04 12:12

In my application i am using recyclerview to display all contact list. I want two section in recyclerview.

Like one section is my application contact list and second

6条回答
  •  佛祖请我去吃肉
    2020-12-04 13:02

    In your adapter getItemViewType Layout like this ....

    @Override
        public int getItemViewType(int position) {
            if (mCountriesModelList.get(position).isSection) {
                return SECTION_VIEW;
            } else {
                return CONTENT_VIEW;
            }
        }
    

    https://github.com/sayanmanna/LetterSectionedRecyclerView

提交回复
热议问题