1

i want to zoom in zoom out the group of images in galleryview.i have done zoom single image using imageview,here i need to zoom gallery view og images.how to do,please help me

gallery.setOnTouchListener(new View.OnTouchListener() {

    @Override
    public boolean onTouch(View v, MotionEvent event) {

//here i need the zoom functionality

        return false;
    }
});
tamil
  • 322
  • 2
  • 8
  • 21

1 Answers1

2

I have try this code, it's working great. no need to waste your time for implementing image zooming functionality. just get these project and understand how to implement the a image into the view.

Here it is: http://blog.sephiroth.it/2011/04/04/imageview-zoom-and-scroll/

Paresh Mayani
  • 127,700
  • 71
  • 241
  • 295
raja
  • 368
  • 2
  • 13