[android-developers] Re: Listview layout and other widgets

2009-02-04 Thread Al
Great, it worked! Thanks a lot! On Feb 4, 12:54 am, Dianne Hackborn hack...@android.com wrote: You should be able to either connect the left and right edges of the text view to the right of its container and left of the inner linear layout, or put it all in a linear layout and give the text

[android-developers] Re: Listview layout and other widgets

2009-02-03 Thread Mark Roberts
Have you tried changing the RelativeLayout to a LinearLayout? On Feb 3, 2:07 pm, Al alcapw...@googlemail.com wrote: In my listview, I'm trying to make the list row show 2 imageviews as well as the textview which holds the data. The layout of a single row is like this: [textview | img1| img2].

[android-developers] Re: Listview layout and other widgets

2009-02-03 Thread Dianne Hackborn
You should be able to either connect the left and right edges of the text view to the right of its container and left of the inner linear layout, or put it all in a linear layout and give the text view a layout_width of 0px and layout_weight of 1. On Tue, Feb 3, 2009 at 1:11 PM, Al

[android-developers] Re: Listview layout and other widgets

2009-02-03 Thread Al
I have but with the LinearLayout, the images don't show up, the text forces it out of the visible screen area. On Feb 3, 7:44 pm, Mark Roberts snappe...@gmail.com wrote: Have you tried changing the RelativeLayout to a LinearLayout? On Feb 3, 2:07 pm, Al alcapw...@googlemail.com wrote: In