My problem is that I have a view that has to be scrollable, but I also need a dynamically filled list in that view. I don't want to use a ListView for that list because it is too expensive for my purpose and behaves very bad when it is in ScrollView.
What I would like is a LinearLayout view that is filled dynamically by an adapter. The way I want to go is to extend AdapterView, but so far I was not very successful.
My question is if you guys tried extending AdapterView, if you could provide some useful tuts or codebases of your own.