Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dora4/dview-alert-dialog
提示信息弹窗,能满足基本的需求
https://github.com/dora4/dview-alert-dialog
Last synced: about 2 months ago
JSON representation
提示信息弹窗,能满足基本的需求
- Host: GitHub
- URL: https://github.com/dora4/dview-alert-dialog
- Owner: dora4
- License: apache-2.0
- Created: 2023-06-24T14:20:20.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-04T19:51:46.000Z (5 months ago)
- Last Synced: 2024-09-06T04:43:46.379Z (5 months ago)
- Language: Kotlin
- Homepage:
- Size: 186 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
dview-alert-dialog
![Release](https://jitpack.io/v/dora4/dview-alert-dialog.svg)
--------------------------------#### Gradle依赖配置
```kotlin
// 添加以下代码到项目根目录下的build.gradle
allprojects {
repositories {
maven { setUrl("https://jitpack.io") }
}
}
// 添加以下代码到app模块的build.gradle
dependencies {
implementation("com.github.dora4:dview-alert-dialog:1.18")
}
```
#### 使用控件
```kotlin
DoraAlertDialog(this).show("提示信息") {
title("系统消息")
themeColorResId(R.color.colorAccent)
positiveListener {
showShortToast("点击了确认按钮")
}
negativeListener {
showShortToast("点击了取消按钮")
}
}```