Well the collage part is easy and tough : Just use one of the many flavor of drawBitmap and matrices(if you want rotation and/or scale randomness) from your source image into your big destination image. What I found difficult and did not solve that properly, is how to layout the pictures nicely so that they all are visible.
The easiest way I found was to dispose the image in a grid with random but limited rotations(+/-25°) and play around with cells size. The smallest the size the more the picture overlap. Then to be able to click one, I would just get the coordinate of the touch event and compute which grid cell it corresponds to. You can maybe even do all of that without creating a big bitmap but just using imageviews. Yahel On 12 oct, 15:35, ntimesc <[email protected]> wrote: > i want to create a bitmap / image which has many images like > "Collage" which has more then one images in a single picture. > > I have stored all my images in a grid view but now i want to create a > single image from all those images. And even i want to make few images > click able > > so what can be the road map to do this ? any sort of help / example > will be helpful. > > search for a for collage image image in google . one can see what it > is exactly -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

