Two Dimensional Scroll View With Zoom
An awesome library to include Two Dimensional Scroll view with zooming capabilities in your app.
Explore the docs >>
Report Bug
*
Request Feature
Table of Contents
- About The Project
-
Getting Started
- Prerequisites
- Installation
- Contributing
- License
- Contact
About The Project
The project aims to solve a personal problem of including Two Dimensional Scrolling view with zoom. A few my projects needed this feature to view the images just like a wallpaper app does to let you set the wallpaper. However, the scroll views in the wallpapers simply scroll horizontally. My problem was that a lot of images were loosing their quality if they were set to the phone's height. I didn't want that. For example, my AnimeClassroom has a manga reading feature. Now the images in mangas are very large both horizontally and vertically. If the height was set to match phone's height, the image lost its quality thus making it harder to read. So, I made this Custom view to solve that problem. Now, I have converted this into a library so that it could be used in any project.
WARNING! : THIS PROJECT IS STILL IN HEAVY DEVELOPMENT, THEREFORE YOU MAY ENCOUNTER BUGS. You can OPEN the ISSUE on GITHUB REPOSITORY.
NEW FEATURES WILL BE ADDED REGULARLY
(Back to top)
Getting Started
Simply fork the repo. Clone it into your machine and let AndroidStudio handle the rest.
Installation
To include this library, follow the below steps.
Step 1 -> Add this line in root build.gradle at the end of repositories.
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}