我正在尝试在通知窗口中显示不确定的进度条。但它没有显示出来。
这是我的代码
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
有人可以指导我出错了吗?
答案 0 :(得分:4)
解决了只需要添加图标
.setSmallIcon(R.drawable.ic_notification);