Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ujwal-coditas/MultiLamp

Android library to showcase/highlight the multiple views on same overlay
https://github.com/ujwal-coditas/MultiLamp

android android-library gradle guideview highlight multilamp multipletargets overlay showcase showcaseview spotlight tutorialview

Last synced: 9 days ago
JSON representation

Android library to showcase/highlight the multiple views on same overlay

Awesome Lists containing this project

README

        

# MultiLamp

MultiLamp is simple and easy to use Android library to showcase/highlight the multiple views on the same overlay with some message.

## Gradle

**Step 1 :** Add it in your root build.gradle at the end of repositories:

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

**Step 2 :** Add the dependency

dependencies {
implementation 'com.github.ujwalthote:MultiLamp:2.0'
}

## Usage

MultiLamp multiLamp = new MultiLamp(activity);
ArrayList targets = new ArrayList<>();
targets.add(new Target(btn1, "This is button 1", MultiLamp.RIGHT, new Circle(40)));
targets.add(new Target(btn2, "This is button 2", MultiLamp.LEFT, new Circle(40)));
targets.add(new Target(textView, "This is textview", MultiLamp.TOP, new Rectangle()));
multiLamp.build(targets);

For demo example, clone this repo and checkout the app module