/dview-alert-dialog

提示信息弹窗,能满足基本的需求

Primary LanguageKotlin

dview-alert-dialog Release

Gradle依赖配置

// 添加以下代码到项目根目录下的build.gradle
allprojects {
    repositories {
        maven { setUrl("https://jitpack.io") }
    }
}
// 添加以下代码到app模块的build.gradle
dependencies {
    implementation("com.github.dora4:dview-alert-dialog:1.10")
}

使用控件

DoraAlertDialog(this).show("提示信息") {
            title("系统消息")
            themeColorResId(R.color.colorAccent)
            positiveListener {
                showShortToast("点击了确认按钮")
            }
            negativeListener {
                showShortToast("点击了取消按钮")
            }
        }