0
我被困在通知中。 當我運行下面的代碼下棒棒糖和棒棒糖,它工作正常。通知setStyle不在棒棒糖中工作
但是,如果我在棒棒糖中運行代碼,setstyle()
方法不起作用。 我也嘗試過使用remoteviews,但它也不起作用。
我試過BigPicture,但它也不起作用。 我錯過了什麼? 請幫忙。
Bitmap largeIcon = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setLargeIcon(largeIcon)
.setContentTitle(title)
.setContentText(content)
.setVisibility(Notification.VISIBILITY_PUBLIC)
.setAutoCancel(true)
.setVibrate(new long[]{1000, 1000, 1000})
.setSound(defaultSoundUri)
.setStyle(new NotificationCompat.BigTextStyle().bigText(content))
.setContentIntent(pendingIntent);
NotificationManager notificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0 /* ID of notification */, notificationBuilder.build());
我試過很多設備,發現它發生在android 5.0.2版本中。