作用预览

如何通过Kotlin协程, 简化

代码预览

lifecycleScope.launch {
    showDialog("报到活动", "报到领10000币") // 直到dialog被封闭, 才会持续运转下一行
    showDialog("新手使命", "做使命领20000币") // 直到dialog被封闭, 才会持续运转下一行
    showDialog("首充奖励", "首充6元送神装")
}

代码实现

要做到上一个showDialig()在封闭时才持续运转下一个函数,需要用到协程挂起的特性, 然后在 OnDismiss()回调中将协程恢复, 为了将这种基于回调的办法包装成协程挂起函数, 可以使用suspendCancellableCoroutine函数

suspend fun showDialog(title: String, content: String) = suspendCancellableCoroutine { continuation ->
    MaterialAlertDialogBuilder(this)
        .setTitle(title)
        .setMessage(content)
        .setPositiveButton("我知道了") { dialog, which ->
            dialog.dismiss()
        }
        .setOnDismissListener {
            continuation.resume(Unit)
        }
        .show()
}