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
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