在通知,android中显示持续进度条?

WIS*_*SHY 6 notifications android progress-bar

我试图在通知窗口中显示一个不确定的进度条.但它没有显示出来.

这是我的代码

                    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());
Run Code Online (Sandbox Code Playgroud)

我正在关注此链接 持续活动指标

有人可以指导我出错了吗?

WIS*_*SHY 4

只需添加一个图标即可解决

.setSmallIcon(R.drawable.ic_notification);
Run Code Online (Sandbox Code Playgroud)