All Projects → ujwalthote → Multilamp

ujwalthote / Multilamp

Licence: apache-2.0
Android library to showcase/highlight the multiple views on same overlay

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Multilamp

MultiLamp
Android library to showcase/highlight the multiple views on same overlay
Stars: ✭ 235 (+0.86%)
Mutual labels:  gradle, spotlight, overlay, showcase, highlight
Flutter showcaseview
Flutter plugin that allows you to showcase your features on iOS and Android. 👌🔝🎉
Stars: ✭ 502 (+115.45%)
Mutual labels:  spotlight, highlight
Spotlight
Introductory walkthrough framework for iOS Apps
Stars: ✭ 45 (-80.69%)
Mutual labels:  spotlight, highlight
Swiftyoverlay
Show overlay and info on app components
Stars: ✭ 63 (-72.96%)
Mutual labels:  overlay, showcase
Cas Gradle Overlay Template
CAS Gradle Overlay: Generic CAS gradle war overlay to exercise the latest versions of CAS
Stars: ✭ 69 (-70.39%)
Mutual labels:  gradle, overlay
Cosin
Android loading view library 📊🍭
Stars: ✭ 129 (-44.64%)
Mutual labels:  gradle, highlight
Leader Line
Draw a leader line in your web page.
Stars: ✭ 1,872 (+703.43%)
Mutual labels:  spotlight, highlight
Driver.js
A light-weight, no-dependency, vanilla JavaScript engine to drive the user's focus across the page
Stars: ✭ 13,154 (+5545.49%)
Mutual labels:  spotlight, overlay
Twitch4j
Modular Async/Sync/Reactive Twitch API Client / IRC Client
Stars: ✭ 209 (-10.3%)
Mutual labels:  gradle
Reposilite
Lightweight repository management software dedicated for the Maven based artifacts (formerly NanoMaven) 📦
Stars: ✭ 222 (-4.72%)
Mutual labels:  gradle
Sample Project Gradle
Sample web3j project using Gradle
Stars: ✭ 211 (-9.44%)
Mutual labels:  gradle
Httpclient Android
HttpClient repackaged for Android
Stars: ✭ 211 (-9.44%)
Mutual labels:  gradle
Modularizationapp
Android 组件化demo
Stars: ✭ 226 (-3%)
Mutual labels:  gradle
Evoli
An ecosystem-simulation game made with Amethyst
Stars: ✭ 212 (-9.01%)
Mutual labels:  showcase
Beerprogressview
A library that lets you create a beer styled progress view with bubbles and all! (hic) 🍺
Stars: ✭ 230 (-1.29%)
Mutual labels:  gradle
Dc Sdk
DC-SDK 是基于 Cesium 进行二次开发的2、3D一体 WebGis 应用框架,该框架优化了 Cesium 的使用方式和增添了一些额外功能,旨在为开发者快速构建 WebGis 应用。🌎
Stars: ✭ 206 (-11.59%)
Mutual labels:  overlay
Drawingview Android
DrawingView is a simple view that lets you draw on screen using your fingers and lets you save the drawings as images.
Stars: ✭ 206 (-11.59%)
Mutual labels:  gradle
Overlay support
a flutter toast and notification library
Stars: ✭ 232 (-0.43%)
Mutual labels:  overlay
Gameoverlay.net
Draw hardware accelerated graphics using our Direct2D1 renderer and create transparent click-through windows.
Stars: ✭ 225 (-3.43%)
Mutual labels:  overlay
Uportal
Enterprise open source portal built by and for the higher education community.
Stars: ✭ 221 (-5.15%)
Mutual labels:  gradle

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<Target> 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

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].