仿IOS 对话框和底部弹出框

仿IOS 对话框和底部弹出框_第1张图片

第一步 添加依赖

 //对话框 仿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()
    }

你可能感兴趣的:(仿IOS需求功能,ios,kotlin,开发语言)