Bottom Dynamic Dialog for Android Projects
It will be uploaded
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add dependencies in build.gradle.
dependencies {
implementation 'com.github.barisatalay:bottom-dialog:1.0'
}
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()
If you have a better idea or way on this project, please let me know, thanks :)