0

I am using MultipartEntityBuilder class for uploading file. Main source for this solution: this link

I want to ask how to cancel upload process in progress function of the ProgressHttpEntityWrapper.ProgressCallback class under special situation? Appreciate any help.

Community
  • 1
  • 1

1 Answers1

0

You might be making the upload request inside some thread or asynctask. so just cancel or stop that thread or asynctask.

For asynctask you can use

task.cancel(true);

Ankit Aggarwal
  • 5,317
  • 2
  • 30
  • 53