我正在尝试在通知窗口中显示不确定的进度栏。但是不显示。

这是我的代码

                    int id = 1;
                NotificationManager mNotifyManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
                Builder mBuilder = new NotificationCompat.Builder(
                        MenuActivity.this);
                mBuilder.setContentTitle("My app")
                        .setContentText("Download in progress");
                mBuilder.setProgress(0, 0, true);
                // Issues the notification
                mNotifyManager.notify(id, mBuilder.build());

我正在追踪这个连结
Continuing Activity Indicator

有人可以指导我怎么了吗?

最佳答案

解决只需要添加一个图标

.setSmallIcon(R.drawable.ic_notification);

10-07 19:27