Reputation: 4595
I am pretty new to android and I have a good iphone background. I need to know whether it is possible to have a expandablelistview inside a listview ?. If yes please let me know how to do that.
Upvotes: 0
Views: 471
Reputation: 1006584
I need to know whether it is possible to have a expandablelistview inside a listview ?
No, sorry. You cannot generally put scrollable things inside of other scrollable things, at least when they scroll in the same direction, as they fight over the touch events.
Upvotes: 2
Reputation: 31779
There is an expandable listview demo in sdk for each version of android. It should be in a location like
E:\Program Files\Android\android-sdk-windows\samples\android-8\ApiDemos
Create a project from existing source in eclipse and you can check its source to understand how it works.
Upvotes: 0