westmeadboy wrote: > I want to do something very similar (in terms of appearance) to the > app details activity of the Market app. > > It looks like a cross between linear layout (not all rows the same), > list (scrolling nature), preferences (headings). > > My guess is its a linear layout in a scroll view (ignoring activity > header/footer) and the headings are just hard coded...
My guess was, and is, that it is a ListView with an appropriate ListAdapter. To have a mixed bag of row types, including some enabled and some not (headings), you can either roll your own ListAdapter, or use my MergeAdapter: http://github.com/commonsguy/cwac-merge -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Development Wiki: http://wiki.andmob.org -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

