我正在尝试.setProgress()
在 NotificationBuilder 上使用,但如果我使用 MediaStyle,pogressBar 似乎不会出现:
NotificationCompat.Builder builder = new NotificationCompat.Builder(this,CHANNEL);
builder
.setSmallIcon(R.drawable.logo)
// more configuration
.setStyle(new android.support.v4.media.app.NotificationCompat.MediaStyle()
.setShowActionsInCompactView(1)
// more config
.setMediaSession(mediaSession.getSessionToken()))
if(isBuffering){
builder.setProgres(0,0, true);
}
如果我删除 .setStyle 进度条显示为假定但使用 MediaStyle 它不会。
有谁知道是否有办法使两者兼容?
谢谢