本文整理了Java中com.zx.zxutils.util.ZXDialogUtil.showWithOtherBtnDialog()
方法的一些代码示例,展示了ZXDialogUtil.showWithOtherBtnDialog()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZXDialogUtil.showWithOtherBtnDialog()
方法的具体详情如下:
包路径:com.zx.zxutils.util.ZXDialogUtil
类名称:ZXDialogUtil
方法名:showWithOtherBtnDialog
[英]带一个中性按钮,不提供确认和取消按钮的文字修改及取消按钮的点击事件(因为太多参数呢),如需要自行创建或采用showCustomDialog
[中]带一个中性按钮,不提供确认和取消按钮的文字修改及取消按钮的点击事件(因为太多参数呢),如需要自行创建或采用showCustomDialog
代码示例来源:origin: StannyBing/ZXUtils
/**
* 带一个中性按钮,不提供确认和取消按钮的文字修改及取消按钮的点击事件(因为太多参数呢),如需要自行创建或采用showCustomDialog
*
* @param context 上下文
* @param title 标题
* @param message 内容
* @param otherBtnText 中性按钮文字
* @param yesListener 确定按钮点击事件
* @param otherBtnListener 中性按钮点击事件
*/
public static Dialog showWithOtherBtnDialog(Context context, String title, String message, String otherBtnText, @Nullable DialogInterface.OnClickListener yesListener, @Nullable DialogInterface.OnClickListener otherBtnListener) {
return showWithOtherBtnDialog(context, title, message, otherBtnText, yesListener, otherBtnListener, false);
}
代码示例来源:origin: StannyBing/ZXUtils
break;
case 4://打开第三按钮loaddialog
ZXDialogUtil.showWithOtherBtnDialog(this, "提示", "are you sure", "查看详情", null, null);
break;
case 5://打开选择列表loaddialog
内容来源于网络,如有侵权,请联系作者删除!