Re: [android-developers] Re: Inner ListView not respecting layout gravity or width

2010-08-02 Thread Mark Murphy
On Mon, Aug 2, 2010 at 8:21 AM, William Ferguson wrote: > Is there a section on the ExpandableListView in the Busy Coders > Guide? Not presently. It's on my to-do list. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twit

[android-developers] Re: Inner ListView not respecting layout gravity or width

2010-08-02 Thread William Ferguson
@Mark Thanks for making me revisit subclassing CursorAdapter. Much clearer than using a SimpleCursorAdapter and a ViewBinder. Is there a section on the ExpandableListView in the Busy Coders Guide? I could have sworn I saw it there last night, but can't find it today. If you're looking for new area

Re: [android-developers] Re: Inner ListView not respecting layout gravity or width

2010-07-31 Thread Mark Murphy
On Sat, Jul 31, 2010 at 4:02 AM, Zsolt Vasvari wrote: > JOIN the header and detail tables in single query. Or use an ExpandableListView. Or something. ListViews nested in ListViews is unlikely to work. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://c

[android-developers] Re: Inner ListView not respecting layout gravity or width

2010-07-31 Thread JoksanCPEN
Inflate a Dialog with the ListView inside. On Jul 31, 4:02 am, Zsolt Vasvari wrote: > JOIN the header and detail tables in single query. > > On Jul 31, 1:11 pm, William Ferguson > wrote: > > > > > Sorry Mark, not sure what you mean. > > > I was using a nested ListView because for each instanve o

[android-developers] Re: Inner ListView not respecting layout gravity or width

2010-07-31 Thread Zsolt Vasvari
JOIN the header and detail tables in single query. On Jul 31, 1:11 pm, William Ferguson wrote: > Sorry Mark, not sure what you mean. > > I was using a nested ListView because for each instanve of the outer > list item there will be one or more instances of the inner. > In the example I am using t

[android-developers] Re: Inner ListView not respecting layout gravity or width

2010-07-30 Thread William Ferguson
Sorry Mark, not sure what you mean. I was using a nested ListView because for each instanve of the outer list item there will be one or more instances of the inner. In the example I am using the outer is Contact, and the inner is RawContact. When you say "stitch them together at the adapter level