alauf-ap
alauf-ap
For those who are facing this issue, I've created a fork of DraggableCollectionView which includes @sgoehler fix and other iOS 9 fixes. [DraggableCollectionView](https://github.com/alauf/DraggableCollectionView)
```java 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`.