We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac17f3a commit 69c5003Copy full SHA for 69c5003
1 file changed
app/src/main/java/com/fankes/coloros/notify/ui/activity/ConfigureActivity.kt
@@ -187,7 +187,13 @@ class ConfigureActivity : BaseActivity<ActivityConfigBinding>() {
187
}
188
/** 设置点击事件 */
189
binding.configCbrButton.setOnClickListener {
190
- openBrowser(url = "https://github.com/fankes/AndroidNotifyIconAdapt/blob/main/CONTRIBUTING.md")
+ showDialog {
191
+ title = "感谢你的贡献"
192
+ msg = "通知图标优化名单需要大家的共同维护才能得以完善,请选择你的贡献方式。"
193
+ confirmButton(text = "贡献规则") { openBrowser(url = "https://github.com/fankes/AndroidNotifyIconAdapt/blob/main/CONTRIBUTING.md") }
194
+ cancelButton(text = "请求适配") { openBrowser(url = "https://github.com/fankes/ColorOSNotifyIcon/issues/new/choose") }
195
+ neutralButton(text = "暂时不用")
196
+ }
197
198
/** 装载数据 */
199
mockLocalData()
0 commit comments