TommyLemon / Android-ZBLibrary

🔥 Android MVP 快速开发框架,做国内 「示例最全面」「注释最详细」「使用最简单」「代码最严谨」的 Android 开源 UI 框架。 🔥 An Android MVP Framework with many demos, detailed documents, simple usages and strict codes.
Apache License 2.0
5.5k stars 1.38k forks source link

对话框能否锁定?不要点击旁边就自动消失了对话框。 #44

Closed tianxiaoyunyou closed 5 years ago

tianxiaoyunyou commented 5 years ago

具体说下 对话框能否锁定?不要点击旁边就自动消失了对话框。

为什么 比如有个选项,希望能只能点击确定或者取消,以便根据用户的选择处理不同逻辑。结果点击旁边的遮罩层,对话框就消失了,结果事件都没有触发。

TommyLemon commented 5 years ago

dialog.setCanceledOnTouchOutside(false)

tianxiaoyunyou commented 5 years ago

谢谢老师。