All Projects → mzelzoghbi → Zgallery

mzelzoghbi / Zgallery

Android 3rd party library to make implementing galleries more easier

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Zgallery

Urlbuilder
Java Builders: URL builder
Stars: ✭ 174 (+8.75%)
Mutual labels:  builder, library
Java Markdown Generator
Java library to generate markdown
Stars: ✭ 159 (-0.62%)
Mutual labels:  builder, library
Ptimagealbumviewcontroller
"Image Album" — or "Photo Album" if you like that better — View( Controller) for all crazy iOS developers out there...
Stars: ✭ 199 (+24.38%)
Mutual labels:  library, gallery
Grabana
User-friendly Go library for building Grafana dashboards
Stars: ✭ 313 (+95.63%)
Mutual labels:  builder, library
Ptshowcaseviewcontroller
An initial implementation of a "showcase" view( controller) for iOS apps... Visualizes images, videos and PDF files beautifully! (by @pittleorg) [meta: image, photo, video, document, pdf, album, gallery, showcase, gallery, iOS, iPhone, iPad, component, library, viewer]
Stars: ✭ 395 (+146.88%)
Mutual labels:  library, gallery
Imageviewer.swift
An easy to use Image Viewer that is inspired by Facebook
Stars: ✭ 1,071 (+569.38%)
Mutual labels:  library, gallery
Zoomwall.js
A content-focused photo gallery using a horizontal masonry layout that scales up in lightbox mode.
Stars: ✭ 254 (+58.75%)
Mutual labels:  library, gallery
Kiimagepager
The KIImagePager is inspired by foursquare's ImageSlideshow, the user may scroll through images loaded from the Web
Stars: ✭ 324 (+102.5%)
Mutual labels:  library, gallery
Ypimagepicker
📸 Instagram-like image picker & filters for iOS
Stars: ✭ 3,661 (+2188.13%)
Mutual labels:  library, gallery
Louvre
A small customizable library useful to handle an gallery image pick action built-in your app. 🌄🌠
Stars: ✭ 629 (+293.13%)
Mutual labels:  library, gallery
Markdown Builder
1kb Markdown builder for Node.js
Stars: ✭ 67 (-58.12%)
Mutual labels:  builder, library
Avalanche
Avalanche: a End-to-End Library for Continual Learning.
Stars: ✭ 151 (-5.62%)
Mutual labels:  library
Kratos
A modular-designed and easy-to-use microservices framework in Go.
Stars: ✭ 15,844 (+9802.5%)
Mutual labels:  library
Ifvisible.js
Crossbrowser & lightweight way to check if user is looking at the page or interacting with it.
Stars: ✭ 1,896 (+1085%)
Mutual labels:  library
Byakuren
🎭 A theme color extracting library implemented by C.
Stars: ✭ 157 (-1.87%)
Mutual labels:  library
Pipeline Library
Collection of custom steps and variables for our Jenkins instance(s)
Stars: ✭ 159 (-0.62%)
Mutual labels:  library
Qr Code Generator
High-quality QR Code generator library in Java, TypeScript/JavaScript, Python, Rust, C++, C.
Stars: ✭ 2,363 (+1376.88%)
Mutual labels:  library
Isobmff
C++ Library for ISO/IEC 14496-12 - ISO Base Media File Format (QuickTime, MPEG-4, HEIF, etc)
Stars: ✭ 157 (-1.87%)
Mutual labels:  library
Rpimotorlib
RpiMotorLib : Raspberry Pi Motor Library : A python 3 library for various motors and servos to connect to a raspberry pi
Stars: ✭ 156 (-2.5%)
Mutual labels:  library
Hyperion Ios
In-app design review tool to inspect measurements, attributes, and animations.
Stars: ✭ 1,964 (+1127.5%)
Mutual labels:  library

ZGallery

Android Arsenal

Android 3rd party library to make implementing galleries more easier

I found myself writing the same Gallery Feature in many apps with the same code, so i made this library to make developers life more easier and prevent wasting their time.

You can checkout the sample app, or view the app directly on GooglePlayStore

Get it on Google Play

It includes two activities :

  • For displaying a list of images in GridLayout using RecyclerView.
  • For displaying images in a ViewPager with a nice scroll HorizontalList and nice zooming gestures Thanks for PhotoView Library

Screenshots

How it works

Grid List Builder

Simply with a very nice builder you will find it done.

ZGrid.with(this, /*your string arraylist of image urls*/)
                .setToolbarColorResId(R.color.colorPrimary) // toolbar color
                .setTitle("Zak Gallery") // toolbar title
                .setToolbarTitleColor(ZColor.WHITE) // toolbar title color
                .setSpanCount(3) // colums count
                .setGridImgPlaceHolder(R.color.colorPrimary) // color placeholder for the grid image until it loads
                .show();

Gallery Builder

ZGallery.with(this, /*your string arraylist of image urls*/)
                .setToolbarTitleColor(ZColor.WHITE) // toolbar title color
                .setGalleryBackgroundColor(ZColor.WHITE) // activity background color
                .setToolbarColorResId(R.color.colorPrimary) // toolbar color
                .setTitle("Zak Gallery") // toolbar title
                .show();

Installation

Add this to your root build.gradle file (not your module build.gradle file) :

allprojects {
  repositories {
    ...
    maven { url "https://jitpack.io" }
  }
}

Add this to your module build.gradle file:

dependencies {
  ...
    compile 'com.github.mzelzoghbi:zgallery:0.3'
}

License

Copyright 2016 mzelzoghbi

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].