Google地图快照未在BigPictureStyle通知中显示

时间:2015-08-05 13:30:00

标签: android bitmap android-notifications

因此,我花了几天的时间试图在通知中显示Google地图快照。 我在MyGcmListener类中有一个工作位图(当我单击调试器中的View Bitmap链接时,可以从Android Studio中查看)。现在我试图让它显示为BigPictureStyle通知位图,但我的运气突然出现了。这是代码:

           NotificationCompat.Builder note = new NotificationCompat
                    .Builder(getApplicationContext())
                    .setSmallIcon(R.mipmap.ic_launcher)
                    .setContentTitle(title)
                    .setContentText(content);

            NotificationCompat.BigPictureStyle style 
               = new NotificationCompat.BigPictureStyle();

            style.bigPicture(mapBit);

            note.setStyle(style);
            note.setAutoCancel(true);
            note.build();

            note.setContentIntent(resultPendingIntent);

            notificationManager.notify(100,note.build()); 

这将导致普通通知,而不附加任何位图。

我在哪里出错?

1 个答案:

答案 0 :(得分:0)

因此,经过2分钟精炼我的搜索,这就是答案:

note.setPriority(Notification.PRIORITY_MAX);