views:

35

answers:

1

I am trying to create something like a rectangular grid with pictures. When a picture is clicked, it should zoom in pushing the other ones out. I don't know what you name you call this particular model with but does anyone have suggestions on where I should start?

Collage Example

A: 

To start with, I'd read up on layouts in android: developer docs are always a good place to start. A GridView might work well for you.

Handling UI events should get you started in listening for mouse clicks.

I'd start with something simple, just showing the pictures on the screen, and then you can build up to more complicated animations, etc.

Mayra