SectionedRecyclerViewAdapter
SectionedRecyclerViewAdapter copied to clipboard
How to make sections for this?
Hi, i am unable to make section with following response. Please help me. "Dtae": "09/14/2015", "messages": [ { "messageId": 26, "from": 12, "to": 1, "message": "ggggsggd", "timeAgo": "2015-09-14T15:00:49.000Z" }, { "messageId": 41, "from": 12, "to": 1, "message": "hy", "timeAgo": "2015-09-15T14:23:49.000Z" } ]
What should be the title of the section ?
Title will be date object.
Can you show me your code
I am changing your sample as follows by changing Animal object :
list = new ArrayList<>();
ArrayList<String> mammalList = new ArrayList<>();
mammalList.add("Lion");
mammalList.add("Cat");
list.add(new AnimalObject(mammalList,"Mammals"));
ArrayList<String> birdsList = new ArrayList<>();
birdsList.add("Albatross");
birdsList add("Pigeon");
list.add(new AnimalObject(birdsList,"Birds"));