tags:

views:

127

answers:

1

If AbsoluteLayout is deprecated what can I use instead of it?

I've done an app that uses AbsoluteLayout but it doesn't work well with the different screen resolutions. I use because I can set the X and Y position of a button. Can I set the position of a button using another layout?

A: 

you can use RelativeLayouts as described here: http://stackoverflow.com/questions/3294590/set-the-absolute-position-of-a-view-in-android

Kyle