Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Non traditional GUI design in Android [closed]

I have a question which is related to the GUI design in android.
If you look Android design architecture, We have tabular structure in design view. We can draw buttons in rows and in columns, we can draw image view and many more but all we will do in matrix.…. As in it mentioned in this following image. enter image description here

But I have seen many interesting GUI design in Android, which looks very beautiful and does not look like traditional design view (in matrix form).

Check the following picture with buttons in zigzag manner. I have drawn the red square on it. enter image description here

I am not sure how it could be designed and how to catch the onclick function for different images and buttons. I hope i have explained my question very well, Kindly tell me if it is not clear. I an looking for healthy response and help.

like image 823
abidkhan303 Avatar asked Oct 22 '22 14:10

abidkhan303


1 Answers

I haven't done this but you can create your own drawable for the background and use rotate on a canvas object to rotate the image. Here is a SO that talks about it and the Docs. Someone may have a better idea but I think this should work for what you want.

like image 162
codeMagic Avatar answered Nov 03 '22 01:11

codeMagic