How to create modal dialog box in android

后端 未结 4 1187
野的像风
野的像风 2021-02-01 19:53

i want create modal dialog box for my application.

so when modal dialog box open the other activities are blocked. no event are done like back button press or home butto

4条回答
  •  梦如初夏
    2021-02-01 20:30

    Use can use setCancellable(false); setCanceledOnTouchOutside(false); for the dialog itself, that should stop that dialog from closing by BACK and by tapping outside the dialog.

    You can't override the HOME button.

提交回复
热议问题