barisatalay / bottom-dialog

Bottom Dynamic Dialog for Android Projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Android Arsenal

Bottom-Dialog

Bottom Dynamic Dialog for Android Projects

Screen Shots

It will be uploaded

Usage

Step 1

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

Step 2

Add dependencies in build.gradle.

    dependencies {
       implementation 'com.github.barisatalay:bottom-dialog:1.0'
    }

Step 3 (Use of library)

   val view = LayoutInflater.from(applicationContext).inflate(R.layout.item_test, null)
   
   BottomDialog(this)
     .setView(view as ViewGroup)
     .setCancelable(true)//if you set 'false', then you can access background views. Try it :)
     .show()

Contact me

If you have a better idea or way on this project, please let me know, thanks :)

Email

My Blog

My Linkedin

About

Bottom Dynamic Dialog for Android Projects

License:Apache License 2.0


Languages

Language:Kotlin 100.0%