A view for Android that shows multiple, resizable squares.
The best way to get to know the library is to start using it. The screenshot on the left is from the example app, and right is from MixUp on the Play Store.
The out-of-box features of this library include:
- Long press on the corner or edge of an image or border to start resizing it
- onClick listeners for each view
- Border on/off toggle
- Customisable border colors
You can extend this library in whatever way you like! With your own tweaks, you could:
- Add references to each image view so they can be set programatically.
- Add more layout types for collages with even more pictures
To use the library, add the following to your Gradle build files:
allprojects {
repositories {
maven {url "https://jitpack.io" }
}
}
dependencies {
implementation "com.github.GerardBradshaw:CollageView:1.0.0-beta0"
}
You can build this library directly from the source code. Enter the terminal command below to clone this repo:
git clone https://github.com/GerardBradshaw/CollageView.git
This library is compatible with SDK21+.
This library is available under the Apache Licence 2.0. See the LICENSE file for more info.