I'm downloading a PDF in my application using:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("*url for your pdf*"));
startActivity(browserIntent);
This opens an activity that looks like a webview and begins the pdf download in the drop down menu. I'd like to keep the drop down download notification but is there a way to close the webview activity once the download starts? Or even better keep the webview from popping up in the first place?