When my android activity pops up a progress dialog, what is the right way to handle when user clicks the back button?
Thank you.
|
When my android activity pops up a progress dialog, what is the right way to handle when user clicks the back button? Thank you. |
|||
|
|
|
Make a new dialog object that extends ProgressDialog, then override the public void onBackPressed() method within it. |
|||||||||||
|
|
if your not having any luck with the onCancel() method, than you can either write up a onKeyDown() method in your activity to check if the progress dialog is showing and if the back button is pressed...or you can override the onBackPressed() method (again, for the activity) and check if your dialog is showing. alternatively you can extend the ProgressDialog class and override onBackPressed() directly from there...in which case you wouldnt have to check if the dialog is showing. eg. for activity method:
the onKeyDown() method would be similar, however you'd have to check whether the dialog is showing, whether the button being pressed is the 'back' button, and you should also make a call to super.onKeyDown() to make sure the default method is also executed.
with either method, the progressDialog variable/property would obviously have to be in scope and accessible. |
||||
|
|
|
You can use the static call:
Just be sure to set cancelable = true and to add the appropriate cancelListener callback. Example:
|
|||
|
|
It works perfectly, I was facing same problem and got the solution. |
||||
|
|