So I am relativity new to android besides some pet projects, and what I want to do with my new project is show an image that consist of a hexagonal shape and on the boarders of the image show some radio buttons. Is this possible/what is the best way to go about this? I was thinking I could do it with absolute view do you guys think this is the best way?
Share
Don’t use AbsoluteLayout as it is deprecated. And using it will make your app’s UI look too different of different devices.
For your current requirement from what I can pick-up, use a RelativeLayout as it would provide a little more flexibility (when compared to LinearLayout)
There is no best UI Layout. What works best for you is the one you must be using.