在通知中显示一个持续的进度条,android?
Display a continuing progress bar in notification, android?
我试图在通知中显示不确定的进度条 window。但它没有显示。
这是我的代码
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());
我正在关注这个link
Continuing Activity Indicator
有人可以指导我解决问题吗?
解决了只需要添加一个图标
.setSmallIcon(R.drawable.ic_notification);
我试图在通知中显示不确定的进度条 window。但它没有显示。
这是我的代码
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());
我正在关注这个link Continuing Activity Indicator
有人可以指导我解决问题吗?
解决了只需要添加一个图标
.setSmallIcon(R.drawable.ic_notification);