westmeadboy wrote: > The headers (and other list items) are TextView. The only reason I > mentioned the headers is because they have a background and so its > obvious what the width is. > > Ok, I just checked the other rows, and they are the same (i.e. > wrapping content). > > So just replace "header" in my original description with "list item".
Hmmmm... Are you inflating these yourself? If so, are you calling inflate(R.layout.whatever, parent, false)? Or are you using some other parameter set on the inflate() call? If you're using something else, try the one I listed above. "parent" in this case is the ListView, as passed into your getView() or newView() method. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Online Training: 26-30 April 2010: http://onlc.com -- 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

