ImageGallery
ImageGallery copied to clipboard
A gallery used to host an array of images
Feature required: Use App Theme or change theme of the activities. Although theme for FullScreenImageGalleryActivity can be replaced using tools:replace="android:theme".
In fullscreen view where the image shows in viewpager, add option like click listener, long click listener , page change listener. So from there i can share or do something...
[](url) 
@lawloretienne Hi, I have used the following code to open the ImageGalleryActivity: ``` Intent intent = new Intent(BaseActivity.this, ImageGalleryActivity.class); String[] images = getResources().getStringArray(R.array.unsplash_images); Bundle bundle = new Bundle(); bundle.putStringArrayList(ImageGalleryActivity.KEY_IMAGES, new...
I was wondering if it's at all possible to hide the toolbar of the fragment activity in code. I could write my own implementation of the xml layout of the...
can u add in this app download and share full screen iamge ?
Feature Required: Allow activity customization specially for the FullScreenImageGalleryActivity has a toolbar so allow to auto hide that like standard gallery apps
You pass reference to activity (context) to static variable [activity](https://github.com/lawloretienne/ImageGallery/blob/master/sample/src/main/java/com/etiennelawlor/imagegallery/activities/MainActivity.java#L79) [static variable](https://github.com/lawloretienne/ImageGallery/blob/master/library/src/main/java/com/etiennelawlor/imagegallery/library/activities/FullScreenImageGalleryActivity.java#L34)
Access level of [private final List images;](https://github.com/lawloretienne/ImageGallery/blob/1459b8e70fa0261da601652c3cbb380ace08e00c/library/src/main/java/com/etiennelawlor/imagegallery/library/adapters/ImageGalleryAdapter.java#L22) could be protected so anyone could extend Adapter and add or remove items in Image list.