//对话框 仿IOS
implementation 'com.bigkoo:alertview:1.0.3'
//title 标题
// msg 提示内容
//i 即为点击引用下标
// ActionSheet 样式风格可以多选
fun showDialog(title: String, msg: String) {
val mAlertViewExt = AlertView(
title,
msg,
"取消",
null,
arrayOf("确定"),
this,
AlertView.Style.ActionSheet
) { _, i ->
if (i == 0) {
}
}
mAlertViewExt.show()
}