3
ウェブ上のファイルへのリンクがあるアプリがあります。私は、ユーザーがデバイスにファイルをダウンロードすることを選択した後、そのファイルを自動的に開きたいと思っています。 これは、ダウンロードするための私のコードです:Androidでダウンロードした後にダウンロードしたファイルを開く
private void downloadFile(String url) {
if (GeneralHelper.isNetworkAvailable(this)) {
Uri uri = Uri.parse(url);
DownloadManager.Request r = new DownloadManager.Request(uri);
String fileName = url.substring(url.lastIndexOf('/')+ 1, url.length());
// This put the download in the same Download dir the browser uses
r.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS, fileName);
r.allowScanningByMediaScanner();
// Notify user when download is completed
// (Seems to be available since Honeycomb only)
r.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
// Start download
DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
dm.enqueue(r);
}
else {
// ....
}
}
ダウンロードが行われた後、私は、ファイルを開くためのコードを追加することができますどのように?
http://blog.vogella.com/2011/06/14/android-downloadmanager -example/ これはうまくいきます。 – srijanshukla