Does use of absolute layout in xml file really makes problem for using on different density emulator
i have used absolute layout in 开发者_运维百科order to display image buttons in my application's main.xml. how exactly it affects to using my app on different density screens..
Absolute Layout is deprecated and should not be used, it will make a mess of handling various screens. Best practices for screen layouts
That is right, absolute layout will always make problem, that is why it is not at all recommended to use. Please refer this Supporting Multiple Screens
精彩评论