K Kiran Raotole Active Member Licensed User Nov 4, 2018 #1 Hii My program show progressdialog but after user click on home button and resume application, application remove progressdialog. How to fix this?
Hii My program show progressdialog but after user click on home button and resume application, application remove progressdialog. How to fix this?
Erel B4X founder Staff member Licensed User Longtime User Nov 4, 2018 #2 Dialogs are dismissed when the activity is paused. You have two options: 1. Store the state with a process global variable and show the dialog again in Activity_Resume. 2. Use a panel with one of the many progress views instead of the dialog. Upvote 0
Dialogs are dismissed when the activity is paused. You have two options: 1. Store the state with a process global variable and show the dialog again in Activity_Resume. 2. Use a panel with one of the many progress views instead of the dialog.