[android-beginners] Re: How to layout

2009-02-10 Thread frizzo
Never mind, figured it out - RelativeLayout. On Feb 10, 10:08 am, frizzo wrote: > Hello, I have 5 buttons.  I'd like to layout the 1st 4 buttons > starting at the top and going down. > > I want the last button to be docked to the bottom of the screen. > > How can I pull off something like that?

[android-beginners] Re: How to Layout

2008-12-10 Thread for android
Is there a way in which we can define the vertical height of the layout in the same way as the weight for the horizontal part of it. On Wed, Nov 26, 2008 at 3:50 AM, Adam Connors <[EMAIL PROTECTED]> wrote: > android:layout_weight is the key... This will probably be useful: > > http://androidrecip

[android-beginners] Re: How to Layout

2008-11-25 Thread Adam Connors
android:layout_weight is the key... This will probably be useful: http://androidrecipes.blogspot.com/2008/11/simple-form-layouts.html On Tue, Nov 25, 2008 at 6:30 AM, Brad Gies <[EMAIL PROTECTED]> wrote: > > > Ok, I'm finally frustrated J. > > > > How do I layout a single row with a TextView, a

[android-beginners] Re: How to Layout

2008-11-25 Thread Romain Guy
Hi, Here is the pseudo layout code: LinearLayout: layout_width=fill_parent TextView layout_width=wrap_content EditText layout_width=0dip layout_weight=1.0 Button layout_width=wrap_content On Mon, Nov 24, 2008 at 10:30 PM, Brad Gies <[EMAIL PROTECTED]> wrote: > > > Ok, I'm finally frustrat