android – 材质对话框库 – 防止在onPositive函数调用上关闭/关闭对话框

前端之家收集整理的这篇文章主要介绍了android – 材质对话框库 – 防止在onPositive函数调用上关闭/关闭对话框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用 this Material Dialog库,当我单击positive按钮时,将调用onPositive函数关闭对话框.如何阻止对话框关闭/解除?

谢谢你的回答.

解决方法

add:autoDismiss(false)
new MaterialDialog.Builder(mainActivity)
            .title(R.string.title)
            .autoDismiss(false)
            .content(R.string.content)
            .positiveText(R.string.positive)
            .negativeText(R.string.negative)
            .positiveColor(setColor())
            .callback(new MaterialDialog.ButtonCallback() {
                @Override
                public void onPositive(MaterialDialog dialog) {

                }
            })
            .negativeColor(setColor())
            .typeface(titleAndActions,contentAndListItems)
            .build()
            .show();
原文链接:https://www.f2er.com/android/311579.html

猜你在找的Android相关文章