lawloretienne / ImageGallery

A gallery used to host an array of images
Apache License 2.0
645 stars 116 forks source link

How can I ignore ImageGalleryActivity and go directly to FullScreenImageGallery #27

Open Cayan opened 7 years ago

Cayan commented 7 years ago

Is it possible?

alauf-ap commented 7 years ago
 Intent intent = new Intent(CurrentActivity.this, FullScreenImageGalleryActivity.class);

 Bundle bundle = new Bundle();
 bundle.putStringArrayList(FullScreenImageGalleryActivity.KEY_IMAGES, photos);
 bundle.putInt(FullScreenImageGalleryActivity.KEY_POSITION, 1); // Change position if needed
 intent.putExtras(bundle);

 startActivity(intent);

Don't forget to implement FullScreenImageGalleryAdapter.FullScreenImageLoader.