Android - Stop AsyncTask when back button is pressed and return to previous Activity

前端 未结 4 1920
再見小時候
再見小時候 2021-02-09 04:22

I\'ve an AsyncTask and I want it to stip execution when back button is pressed. I also want the app to return to the previous displayed Activity. It seems I\'ve managed in stop

4条回答
  •  礼貌的吻别
    2021-02-09 05:11

    Try this one...

    progress_dialog.setCancelable(true);
    progress_dialog.setOnCancelListener(new OnCancelListener() {
    
        @Override
        public void onCancel(DialogInterface dialog) {
            // TODO Auto-generated method stub
            YourActivity.this.finish();
            }
        });
    

提交回复
热议问题