FloatingOverlayView

Additional

Language
Kotlin
Version
1.0.2 (Jan 31, 2024)
Created
Jan 31, 2024
Updated
Jan 31, 2024
Owner
Mahdi Javaheri (javaherisaber)
Contributor
Mahdi Javaheri (javaherisaber)
1
Activity
N/A
Badge
Generate
Download
Source code

FloatingOverlayView

Floating view with draw over other apps

Demo

Build

Step 1. Add the JitPack repository to your build file
allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}
Step 2. Add the dependency
dependencies {
    implementation 'com.github.javaherisaber:FloatingOverlayView:1.0.2'
}

Usage

Layout.xml

Step 1. Create layout and don't forget add id (root_container) like this
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <FrameLayout
        android:id="@+id/root_container"
        android:layout_width="250dp"
        android:layout_height="200dp">

        ....

    </FrameLayout>

</FrameLayout>

Kotlin/Java

Step 2. Create FloatingOverlayView
FloatingOverlayView(context, R.layout.view_overlay)
    .setXOffset(800) // move the banner to the right side
    .setOnCreateListener { layout: FloatingOverlayView, view: View ->
        // do something with `view`, maybe a close button
    }
    .setOnCloseListener {
        // do something after the banner is closed
    }
    .create()