How to create clickable photo collage in android? - android

I want to create as per below image in that all blocks contains the image we can call it photo collage and its will also clickable. How can I make this using GridView or any other view or library.?
If anyone has any idea related to this then please suggest me the write way.

From what I understand from your question, you want to show multiple images in a grid view like pattern and they may have different sizes/aspect ratios? Right?
QuiltView can be used to achieve this.

Related

Create Grid collage in android

I am working on a collage maker app. I have made Free collage successfully. Now I want to make grid collage. I have array of Image urls and I want to show these images in grid template of more than one designs. So what should I do for this approach.I have to make Grid Template Like this or may be with angled inner edges.
I have made this by using Grid Layout, it is successfully made but problem arrive when I am trying to make it like second Image
Please Help me I am stucking here for long time, Thanks.
Begin with an example from Google. There are plenty of step by step examples: http://developer.android.com/guide/topics/ui/layout/gridview.html

How to Categorise Images in GridView to make Custom Gallery

I have made few Gallery modules by using GridView i have used this tutorial: http://www.androidhive.info/2012/02/android-gridview-layout-tutorial/,
but now this time i want to make it more custom for my usage, i want to Categories Images, Please see below Screen Shot
I will be use static images under specific Categories
How to make this kind of Image Gallery:
I have never tried, but i have found this sample code, and please try to custom it as you like:
http://blog.blundell-apps.com/infinite-scrolling-gallery/
you can do it by implementing Jeff Shrkey's SeperatedListadapter
http://jsharkey.org/blog/2008/08/18/separating-lists-with-headers-in-android-09/
and you can
Look 1
Look 2
There isn’t an easy way of creating these separated lists, so I’ve put
together SeparatedListAdapter which does it quickly. To summarize,
we’re creating a new BaseAdapter that can contain several other
Adapters, each with their own section headers.
Create a Layout having a TextView and custom ListView. in each listItem have a GridView. and Load GridItems.
The TextView is for the Category Name.
Basically you must combine, the Custom ListView Implementation and GridView Implementation to achieve your objective. You can find Separate Tutorials for doing the same in the same androidhive website. But, you must work on combining them into one.

Android Photo stream layout like instagram

I need to create a photo feed layout for android similar to instagram's. What is the best layout to use as the parent? A TableView or a ListView? Something else? Also how does Instagram not run out of memory loading so many photos at once?
GridView does what you are looking for, and is fed by a ListAdapter. This will also handle recycling views to manage memory.

How to create custom gallery view and zoom?

How to create own Gallery View?
i want to view multiple images and scroll.
Thank you,
Rajesh Patil
As I understand correctly you need to create your custom Gallery view. You need to extend it from AdapterView. There is a great example of how to do that, but in custom ListView interpretation by SonyEricsson. You may use it to figure out how to create custom Gallery

Custom Adapter for Gallery View in Android

hi i want to split my gallery with 5 images in 2 rows.
Please let me know how to do this in android using Gallery View & custom adapter for Gallery view.
Is there any sample code available please share it, i have already checked the previous posts in this site.
Thanks
If you still need this and Pagination instead of scroll will work for you, you might look at: https://github.com/sfarooq/PaginatedGallery
I designed it using ViewPager so you can manipulate the adapter to send any kind of views you want including two row views.
If you must use scrolling galleries you could implement two separate gallery in a vertical orientation and send touch events from each to the other.

Categories

Resources