westmeadboy wrote: > I see that the description section is not selectable and assume it is > pretty trivial to define whether something like that (and headings) is > selectable or not... > > In my case, some rows are selectable and others have views within them > that are selectable (think of a displayed sentence where individual > words are clickable). > > Given this, and if I understand you correctly, then the MergeAdapter > is the best way to go?
Having rows that should be selectable screams "use ListView" to me, because rolling that yourself could be messy. Whether you use MergeAdapter or your own custom BaseAdapter is up to you. Your own custom adapter class gives you more control; MergeAdapter is plug-and-play. BTW, if you elect to use MergeAdapter and have questions, please join the [cw-android] Google Group and post the questions there -- no sense in cluttering up this list. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 3.0 Available! -- 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

