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?
AbsoluteLayout
is deprecated is because it does not support multiple screen sizes well. Any direct corollary toAbsoluteLayout
(e.g.,FrameLayout
with margins) will suffer the same problem. You should start by seeking other solutions your problem, ones that will work better with a wide range of devices. – Ingenue