ExpandableListView + RecylerView (for child items with Horizontal Scroll)
Screenshots
item_parent.xml
Group header with custom indicator at Right hand side
item_group_child.xml
RecyclerView to hold the all childs of its parent in Horizontal way
item_child.xml
Child item layout
BrandAdapter.java
@Override public int getChildrenCount(int groupPosition) {
return 1;
}
since the parent element going to have only one RecyclerView, so return 1
for getChildrenCount