I am working on a UI design. I would like to make a UI like the image below:
But I have no idea on how to place images like that. I want it to be resizable when running on different device. Any key words to search in Google?
Thank you!
I am working on a UI design. I would like to make a UI like the image below:
But I have no idea on how to place images like that. I want it to be resizable when running on different device. Any key words to search in Google?
Thank you!
If you want to create a GridView with uneven rows similar to the design of the app that you posted in this picture there is a custom view on Github: maurycyw/StaggeredGridView
This will help in creating rows where the heights aren't the same. Here is an image that I pulled from http://www.androidviews.net showing this type of design and the view in action.
Hope this helps.
Use the relative layout. That's the best way to arrange views in that position. Afterwards you can give the corresponding background to each view and maybe a click event!
Here you can read more about relative layouts: http://developer.android.com/guide/topics/ui/layout/relative.html