Open Cayan opened 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
.
Is it possible?