[android-developers] Re: Mixing RelativeLayout and Absolute

2011-02-14 Thread RLScott
Thank you "Streets" and Kostya. I had never worked with nested layouts before, so I didn't realize such a thing was so easy. I tried it and it works great. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: Mixing RelativeLayout and Absolute

2011-02-14 Thread Streets Of Boston
There are many ways to tackle this problem. But what about putting a horizontal LinearLayout at the bottom of the RelativeLayout, with width set to fill_parent, height to wrap_content. Then put 5 buttons inside this horizontal layout, give them equal weight. -- You received this message because