[android-developers] Re: About how to make new buttons in a row?

2010-04-13 Thread goldust
you can add every three button in a linearlayout, and then add the three linearlayout in a father linearlayout On Apr 12, 2:51 pm, ecss utdallas dianyuangua...@gmail.com wrote: Thank you. But when I change the orientation of the layout to horizontal, I can only make the all the buttons align in

[android-developers] Re: About how to make new buttons in a row?

2010-04-13 Thread Prathamesh Shetye
try this TableLayout TableRow //Add Your Buttons Here /TableRow /TableLayout On Apr 12, 10:47 am, xlshe dianyuangua...@gmail.com wrote: Hi all, I want to create three button on the layout. But the default align of the buttons is in a column like: Button1 Button2

[android-developers] Re: About how to make new buttons in a row?

2010-04-12 Thread Vinay S
Hi, I hope you are using LinearLayout as your base Layout.. If so, look for orientation in the properties of this obj and change it to horizontal. Vinay On Apr 12, 10:47 am, xlshe dianyuangua...@gmail.com wrote: Hi all, I want to create three button on the layout. But the default align of

Re: [android-developers] Re: About how to make new buttons in a row?

2010-04-12 Thread ecss utdallas
Thank you. But when I change the orientation of the layout to horizontal, I can only make the all the buttons align in a row. I have so many buttons on the layout, I need them align like this: Button1 Botton2 Botton3 Button4 Button5 Button6 Button7 Button8 Button9 I want to align them both in rows

[android-developers] Re: About how to make new buttons in a row?

2010-04-12 Thread String
On Apr 12, 7:51 am, ecss utdallas dianyuangua...@gmail.com wrote: the layout, I need them align like this: Button1 Botton2 Botton3 Button4 Button5 Button6 Button7 Button8 Button9 You'll need 4 LinearLayouts, a parent with an orientation of vertical containing 3 child LinearLayouts (each with