I've to make a horizontal list view inside a vertical list view. Both list views can have any number of elements and both needs to be scrollable.
How will I achieve this because I've read that android doesn't support list view hierarchy.
Thanks !

|
I've to make a horizontal list view inside a vertical list view. Both list views can have any number of elements and both needs to be scrollable. How will I achieve this because I've read that android doesn't support list view hierarchy. Thanks !
|
|||
|
|
To Achieve this this, You have to do the following::
Hence this will let you scroll vertically in the Screen as well as Horizontally in each ListView. for eg.
Edit: Adding Dynamically ListView to the LinearLayout.
|
|||||||
|
|
I would suggest using a ListView to scroll vertically and use a LinearLayout inside a ScrollView to do the horizontal scrolling. ListView - item 1: - HorizontalScrollView - LinearLayout(orientation:horizontal) |
|||
|
|
|
It is not possible but you can do one trick that i have used and worked for me too. You can stop(interrupt) outer listview s scroll method by using this :) Suppose you have listview LV inside Horizontal Listview HV then you have to write following in the touch method of list view-
|
|||
|
|
|
||||
|
|