How to extend AdapterView to behave like a LinearLayout dynamically populated by an adapter

My problem is that I have a view that should be scrollable, but I also need a dynamically populated list in that view. I do not want to use ListView for this list because it is too expensive for my purpose and behaves very badly when it is in ScrollView.

What I would like is a LinearLayout view that is dynamically populated by the adapter. The way I want to go is to extend AdaptView, but so far I have not been very successful.

My question is, you guys tried extending AdaptView if you could provide some useful stuff or your own codebases.

+4
source share
1 answer

Neil Davis did a great job of wrapping around using adapter view

take a look at its code, it will definitely help you ...

http://www.inter-fuser.com/2010/02/android-coverflow-widget-v2.html

+3
source

All Articles