我正在尝试为我创建的DownloadManager请求设置一个图标,但我无法做到这一点。 我读过有关创建BroadcastReceiver的内容,但我想知道如果没有它可以做到这一点。 这是我的DownloadManager请求代码:
final String filename = getIntent().getExtras().getString("id") + ".apk";
DownloadManager.Request request = new DownloadManager.Request(Uri.parse(url));
request.setTitle(filename);
request.setDescription("Downloading...");
request.setMimeType("application/vnd.android.package-archive");
// in order for this if to run, you must use the android 3.2 to compile your app
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
request.allowScanningByMediaScanner();
request.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
}
request.setDestinationInExternalPublicDir("/Library", filename);
// get download service and enqueue file
DownloadManager manager = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);
manager.enqueue(request);
Toast.makeText(LinkActivity.this, "Download has started.", Toast.LENGTH_LONG).show();
以下是现在的示例:
我的目标是更改左侧通知ImageView的图像。
非常感谢。
答案 0 :(得分:1)
您无法覆盖此图标。而且,如果我没记错的话,能够做到没有多大意义,因为下载管理器可以运行多个下载,并且仍然需要一个通知槽来指示......