0

I want to do a similar activity in my app. I know how to modify the Adapter class, but in my opinion it's difficult for this situation. Is there more simple way to do a similar activity? Image is here:

enter image description here

TZHX
  • 5,291
  • 15
  • 47
  • 56
  • For these types of screens that are extremely dynamic, it seems like programatically adding each section to a ScrollView may be easier than creating a complex ArrayAdapter implementation. – Shellum May 08 '12 at 15:28

2 Answers2

1

In my opinion, it is not a ListView, It is just a LinearLayout with vertical orientation inside ScrollView. Avoid using ListView if you have few static views.

M-WaJeEh
  • 11
  • 1
0

If you mean the list adapter of this activity , try CWAC Merge Adapter , I use that implement a similar activity.

And if you mean the Tab Adapter , use ActionbarSherlock with ViewPager in android-support-v4 , I have done that too.

They all have demos , try them out.

Wangchao0721
  • 909
  • 1
  • 9
  • 23