Hi I need to have a list view which is separated by date which native component i should use in android?can zou help me mazbe with some links, how to do it.I have an list activity coded, and working fine.thanks
or maybe some dropdown box if is better i mean sthink like that:

Hi I need to have a list view which is separated by date which
Share
An
ExpandableListViewwith custom group and child layout and disabled collapsing would be the simplest solution for you.The list of groups would be the dates, the list of children would be the childLists (for each group a list).
But with a
BaseExpandableListAdapterand a hierarchical data structure it would be even easier.There you’d need a
Dayclass with name (or date), and a list ofChildinstances, whereChildhas atitleand adetailsmember.Child {title: String, details:String}
Day {date: Date, List<Child>children}