Android N在下载管理器通知中有一个新的取消按钮。
我想在我的应用中优先使用某些代码来在用户按下此按钮时停止进度条。如果有的话,调用哪种方法?
另请注意,Intent过滤器操作DownloadManager.ACTION_NOTIFICATION_CLICKED仅在用户单击通知本身时触发,而不是在用户单击取消按钮时触发。
if_downloadManager = new IntentFilter();
if_downloadManager.addAction(DownloadManager.ACTION_DOWNLOAD_COMPLETE);
if_downloadManager.addAction(DownloadManager.ACTION_NOTIFICATION_CLICKED);
br_downloadManager = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (DownloadManager.ACTION_DOWNLOAD_COMPLETE.equals(action)) {
....
}
if (DownloadManager.ACTION_NOTIFICATION_CLICKED.equals(action)) {
// This code is not executed when the user presses the Cancel Button in the Download Manager Notification
}
}
};
提前致谢。
答案 0 :(得分:0)
Malko,我没有找到解决方案,但我同时使用以下解决方法。 我使用Android Handler每10秒运行一次resetProgressIfNoOngoingDMRequest():
public int numberOfOngoingDMRequest() {
cursor = downloadManager.query(new Query());
int res = cursor.getCount();
cursor.close();
return res;
}
public boolean resetProgressIfNoOngoingDMRequest() {
if (numberOfOngoingDMRequest() == 0) {
refreshUpdateAllButton(false);
resetEpisodesDownloadIds();
act.misc.notifyEpisodesDataSetChanged();
return true;
}
return false;
}
不太好但是它完成了这项工作。只有当应用程序位于前台时,我才会这样做。
答案 1 :(得分:0)
另一种解决方案是使用ContentObserver
。
下载管理器的内容uri应为content://downloads/my_downloads
,我们可以监控此数据库的更改。当您使用下载ID开始下载时,将创建一行content://downloads/my_downloads/{downloadId}
。我们可以检查此光标以了解此任务是否被取消。如果返回的游标为空或null,则在数据库中找不到记录,则此下载任务将被用户取消。
// get the download id from DownloadManager#enqueue
getContentResolver().registerContentObserver(Uri.parse("content://downloads/my_downloads"),
true, new ContentObserver(null) {
@Override
public void onChange(boolean selfChange, Uri uri) {
super.onChange(selfChange, uri);
if (uri.toString().matches(".*\\d+$")) {
long changedId = Long.parseLong(uri.getLastPathSegment());
if (changedId == downloadId[0]) {
Log.d(TAG, "onChange: " + uri.toString() + " " + changedId + " " + downloadId[0]);
Cursor cursor = null;
try {
cursor = getContentResolver().query(uri, null, null, null, null);
if (cursor != null && cursor.moveToFirst()) {
Log.d(TAG, "onChange: running");
} else {
Log.w(TAG, "onChange: cancel");
}
} finally {
if (cursor != null) {
cursor.close();
}
}
}
}
}
});
查看答案here
答案 2 :(得分:0)
我在我的应用中遇到了同样的问题,我必须处理下载通知上的“取消”按钮,并从原生下载应用下载删除。
事实证明,如果您使用意图过滤器注册接收器: DownloadManager.ACTION_DOWNLOAD_COMPLETE ,则在启动取消或下载删除时始终会调用它。
那么,如何区分下载完成和下载删除?
嗯,这很简单:
dmid
获取已取消下载的下载管理器ID(Intent data
)到handleReceive
的{{1}}功能。BroadcastReceiver
查询DownloadManager的状态。dmid
,DownloadManager将返回null,或者对于所述下载,dmid
列的值将为DownloadManager.STATUS_SUCCESSFUL
。作为参考,你可以在这里看到我是如何做到的:
答案 3 :(得分:0)
我的解决方案与MiaN KhaLiD非常相似。单击“取消”时,始终会收到DownloadManager.ACTION_DOWNLOAD_COMPLETE。我在接收器中这样做:
Cursor cursor = downloadManager.query(query);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(DownloadManager.COLUMN_STATUS);
int status;
try {
status = cursor.getInt(columnIndex);
KLog.d("download status = " + status);
} catch (CursorIndexOutOfBoundsException e) {
KLog.d("cancelled from notification");
return;
}