0

Hy guys can u please tell me how can I open the default download manager of my android device on the button click in android. I don't know what can I do on button click please suggest.

 case R.id.download1:
            break;
Akshit
  • 7
  • 1
  • 2

1 Answers1

0

to open download manager add this

startActivity(new Intent(DownloadManager.ACTION_VIEW_DOWNLOADS));
NickUnuchek
  • 11,794
  • 12
  • 98
  • 138
  • Bro, I did this but it opens the download folder, not mobile default download manage from where user can pause or resume their downloading. – Akshit Nov 25 '20 at 22:48