views:

302

answers:

1

dear friends,

i want to create image slideshow in android.

i have many images in android gridview now i want to open manual slideshow if any image is clicked so that i could view it by moving finger left or right next and previous images

like android built in gallery.

any one guide me how to achieve this?

any help would be appriciated.

A: 

you can find example of Gallery1 and Gallery2 in ApiDemos:

c:\android-sdk-windows\samples\android-7\ApiDemos\src\com\example\android\apis\view\

Reflog
no both are not helpful i want to open image in full side then slide left and rightward manually how to open full screen image with slider?
UMMA
just create a fullscreen ImageView (set width and height to fill_parent) and add a SimpleGestureListener to recognize the onFling gesture. when it's recognized, switch the image in the ImageView.
Reflog