0

I am using Save an image from a url accepted answer for saving the image, is there any way to hide the circled icon as shown while this process starts. see circled icon

Community
  • 1
  • 1
Nitish Jain
  • 704
  • 2
  • 10
  • 24

1 Answers1

0

There is no methods to customize the look and feel of a notification from DownloadManager, if you ever check the official API document. If you want to customize the outlook of a downloading notification, maybe you need to implement the download mechanism by your own.

SilentKnight
  • 13,761
  • 19
  • 49
  • 78
  • Hey how to implement the custom download mechanism without using the async task, as I need to download file on the click of the button. So I mean can you please suggest the fastest way without using download manager or Async task or the link to the same... I need to save the images to the particular folder in SD Card – Nitish Jain Apr 08 '15 at 03:19
  • If your want to implement downloading a file over internet without a `AsyncTask` or `Handler`, I am afraid it's wouldn't be done. Because downloading on the UI thread is not permitted. If you want to know how to download a file through a `AsyncTask`, check [this file](https://github.com/LittlePanpc/android-download-manager/blob/master/src/com/littlepanpc/download/services/DownloadTask.java). – SilentKnight Apr 08 '15 at 04:02
  • Actually I am using async task for the other purpose when downloading to be done, So what to do? – Nitish Jain Apr 08 '15 at 04:20
  • And how to download the image into folder in SD card using Handler? I haven't used Handler before... – Nitish Jain Apr 08 '15 at 04:35
  • check [here](http://developer.android.com/reference/android/os/HandlerThread.html) – SilentKnight Apr 08 '15 at 07:25