在GCM android的推送通知中自动扩展图像

时间:2015-11-15 03:50:04

标签: android google-cloud-messaging

我成功将图像设置为以下代码

    mNotificationManager = (NotificationManager)
    this.getSystemService(Context.NOTIFICATION_SERVICE);
    Bitmap remote_picture = BitmapFactory.decodeResource(getResources(), R.drawable.bg1);
    NotificationCompat.BigPictureStyle notiStyle = new NotificationCompat.BigPictureStyle();

    notiStyle.bigPicture(remote_picture);
     PendingIntent contentIntent = PendingIntent.getActivity(this, 0, openIntent, PendingIntent.FLAG_CANCEL_CURRENT);
    NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(this).setSmallIcon(R.drawable.ic_stat_gcm)
    .setContentTitle("Test")
    .setStyle(new NotificationCompat.BigTextStyle()
    .bigText(data_msg_sort))
    .setContentText("123")
    .setStyle(notiStyle);
    mBuilder.setContentIntent(contentIntent);
    mBuilder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI);
    mBuilder.setAutoCancel(true);
    mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());

但是,我需要向下滚动通知消息以展开并查看图像。否则,它不会显示在通知中。你能看一下我的代码并给我一些方法来设置图像自动扩展全尺寸,如下图所示 enter image description here

1 个答案:

答案 0 :(得分:1)

请注意,如果优先级较高的通知区域中存在任何通知消息,则您的通知将不会以展开模式显示。

因此,您必须将优先级设置为notification.priority = Notification.PRIORITY_MAX以使其处于最高优先级。如果您也这样做,请注意,如果存在任何具有MAX优先级的通知,它也可能会崩溃。