下载文件时的通知图标

时间:2013-06-18 08:08:06

标签: java android

有人知道如何在下载文件时在状态栏中使用通知图标吗?就像在app store中下载文件一样。图标就像在gif中一样。

3 个答案:

答案 0 :(得分:29)

只需使用默认的android资源android.R.drawable.stat_sys_download即可。

答案 1 :(得分:4)

这是一个功能齐全的示例,将在状态栏中显示默认的“系统”下载通知图标。

private static void showProgressNotification(Context context, int notificationId, String title, String message)
{
    NotificationManager manager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(context);

    mBuilder.setContentTitle(title)
    .setContentText(message)
    .setSmallIcon(android.R.drawable.stat_sys_download)
    .setTicker("")
    .setProgress(0, 0, true);

    manager.notify(notificationId, mBuilder.build());
}

当您的“下载”操作完成后,请清除通知:

private static void hideProgressNotification(final NotificationManager manager, final Context context, final int id)
{
    manager.cancel(id);
}

答案 2 :(得分:0)

了解Android下载管理器。它显示一个通知图标,表示有文件下载。 Android Download Manager