I want to display an ListView which should have Header/divider after the set of elements are displayed.
I have the set of elements in an Map
like this -
Map<String,ArrayList<File>> list=new HashMap<>();
Every different element of this Map should be considered as an group. For example the first element list
is Group 1
and the second element of the list
is Group 2
and so on. The size of every group is not fixed it may be 10 or it may be 3 etc.
Can any one help me to achieve this.