Мое приложение для веб-просмотра уже обрабатывает внешний URL-адрес (открывает ссылки из внешних приложений, таких как viber, браузеры и т.д.), как this- (Я получил этот код здесь)
// get URL from browsable intent filter
TextView uri = (TextView) findViewById(R.id.urlField);
// get the url
url = getIntent().getDataString();
Uri data = getIntent().getData();
if (data == null) {
uri.setText("");
} else {
uri.setText(getIntent().getData().toString());
fadeout();
}
// }
в настройках веб-просмотра
// Load URL from Browsable intent filter if there is a valid URL pasted
if (uri.length() > 0)
webView.loadUrl(url);
else
// dont load
вот как я обрабатываю загрузки в своем веб-браузере
// download manager
webView.setDownloadListener(new DownloadListener() {
@Override
public void onDownloadStart(String url, String userAgent,
String contentDisposition, String mimeType,
long contentLength) {
DownloadManager.Request request = new DownloadManager.Request(
Uri.parse(url));
request.setMimeType(mimeType);
String cookies = CookieManager.getInstance().getCookie(url);
request.addRequestHeader("cookie", cookies);
request.addRequestHeader("User-Agent", userAgent);
request.setDescription("Downloading file...");
request.setTitle(URLUtil.guessFileName(url, contentDisposition,
mimeType));
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
request.setDestinationInExternalPublicDir(
Environment.DIRECTORY_DOWNLOADS, URLUtil.guessFileName(
url, contentDisposition, mimeType));
DownloadManager dm = (DownloadManager) getSystemService(DOWNLOAD_SERVICE);
dm.enqueue(request);
Toast.makeText(getApplicationContext(), "Downloading File",
Toast.LENGTH_LONG).show();
}
});
// download manager
Однако, я бы хотел обработать эти загрузочные намерения, переданные другими приложениями. Как это сделать?
Это то, что я использую, чтобы открыть системный выбор приложений по умолчанию из другого приложения (мое приложение указано здесь) -
// download via...
webView.setDownloadListener(new DownloadListener() {
public void onDownloadStart(String url, String userAgent,
String contentDisposition, String mimetype,
long contentLength) {
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);
Toast.makeText(getApplicationContext(), "don't choose our app as it can't handle download intents, i have posted a question on stackoverflow though.",
Toast.LENGTH_SHORT).show();
}
});
// download via..
Всякий раз, когда я нажимаю ссылку для загрузки, мое приложение открывается, но просто сидит, а не открывает URL-адрес. Я хочу, чтобы он работал как приложение-загрузчик.