2015-08-13 13 views
13

İki günden beri böyle yapmaya çalışıyorum. Ama başarısız oldum. Lütfen herhangi birinin push bildirimde nasıl resim alacağımı önerdiğini varsayalım. Şimdiden teşekkür ederim. Ne denedimGörüntüyü push bildiriminde (Gcm) nasıl gösteririm android?

enter image description here

Kodu:

@SuppressWarnings("deprecation") 
private void handleMessage(Context mContext, Intent intent) { 
    Bitmap remote_picture = null; 
    long when = System.currentTimeMillis(); 
    int icon = R.drawable.reload_logo; 
    try { 
     Bundle gcmData = intent.getExtras(); 
     if(intent.getExtras().getString("message")!=null) 
      Log.v("TAG_IMAGE", "" + intent.getExtras().getString("message")); 
     Log.v("TAG_IMAGE", "" + intent.getExtras().getString("imageurl")); 


     { 
      NotificationCompat.BigPictureStyle notiStyle = new NotificationCompat.BigPictureStyle(); 
      notiStyle.setSummaryText(intent.getExtras().getString("message")); 

      try { 
       remote_picture = BitmapFactory.decodeStream((InputStream) new URL(intent.getExtras().getString("imageurl")).getContent()); 
      } catch (IOException e) { 
       e.printStackTrace(); 
      } 
      notiStyle.bigPicture(remote_picture); 
      notificationManager = (NotificationManager) mContext 
        .getSystemService(Context.NOTIFICATION_SERVICE); 
      PendingIntent contentIntent = null; 

      Intent gotoIntent = new Intent(); 
      gotoIntent.setClassName(mContext, "com.reloadapp.reload.fragments.MainActivity");//Start activity when user taps on notification. 
      contentIntent = PendingIntent.getActivity(mContext, 
        (int) (Math.random() * 100), gotoIntent, 
        PendingIntent.FLAG_UPDATE_CURRENT); 
      NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
        mContext); 
      Notification notification = mBuilder.setSmallIcon(icon).setTicker("Reload.in").setWhen(0) 
        .setAutoCancel(true) 
        .setContentTitle("Reload.in") 
        .setStyle(new NotificationCompat.BigTextStyle().bigText(intent.getExtras().getString("message"))) 
        .setContentIntent(contentIntent) 
        .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)) 
        .setLargeIcon(remote_picture) 
        .setContentText(intent.getExtras().getString("message")) 
        .setStyle(notiStyle).build(); 


      notification.flags = Notification.FLAG_AUTO_CANCEL; 
      count++; 
      notificationManager.notify(count, notification);//This will generate seperate notification each time server sends. 
     } 
    }catch (Throwable e) { 
     e.printStackTrace(); 
    } 
} 

Ben küçük bir simge ve büyük simgesi alıyorum aynı görüntü ile bulunmaktadır. Ama ben farklı verdim.

sonucu:

+0

herhangi biri bana yardım edin. –

+0

Lütfen daha önce denediğiniz şeyleri açıklayınız? – Emil

+1

Resim URL'sini içeren bir 'json String' i ** mesajı ** olarak göndermeyi denediniz mi? – Emil

cevap

16

Teşekkür ederiz @Ravi. Çoklu hat için

@SuppressWarnings("deprecation") 
    private void handleMessage(Context mContext, Intent intent) { 
     Bitmap remote_picture = null; 
     long when = System.currentTimeMillis(); 
     int icon = R.drawable.reload_logo; 
     Bundle gcmData = intent.getExtras(); 
     //if message and image url 
     if(intent.getExtras().getString("message")!=null && intent.getExtras().getString("imageurl")!=null) { 
      try { 


       Log.v("TAG_IMAGE", "" + intent.getExtras().getString("message")); 
       Log.v("TAG_IMAGE", "" + intent.getExtras().getString("imageurl")); 


       NotificationCompat.BigPictureStyle notiStyle = new NotificationCompat.BigPictureStyle(); 
       notiStyle.setSummaryText(intent.getExtras().getString("message")); 

       try { 
        remote_picture = BitmapFactory.decodeStream((InputStream) new URL(intent.getExtras().getString("imageurl")).getContent()); 
       } catch (IOException e) { 
        e.printStackTrace(); 
       } 
       notiStyle.bigPicture(remote_picture); 
       notificationManager = (NotificationManager) mContext 
         .getSystemService(Context.NOTIFICATION_SERVICE); 
       PendingIntent contentIntent = null; 

       Intent gotoIntent = new Intent(); 
       gotoIntent.setClassName(mContext, "com.reloadapp.reload.fragments.MainActivity");//Start activity when user taps on notification. 
       contentIntent = PendingIntent.getActivity(mContext, 
         (int) (Math.random() * 100), gotoIntent, 
         PendingIntent.FLAG_UPDATE_CURRENT); 
       NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
         mContext); 
       Notification notification = mBuilder.setSmallIcon(icon).setTicker("Reload.in").setWhen(0) 
         .setAutoCancel(true) 
         .setContentTitle("Reload.in") 
         .setStyle(new NotificationCompat.BigTextStyle().bigText(intent.getExtras().getString("message"))) 
         .setContentIntent(contentIntent) 
         .setSound(RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION)) 

         .setContentText(intent.getExtras().getString("message")) 
         .setStyle(notiStyle).build(); 


       notification.flags = Notification.FLAG_AUTO_CANCEL; 
       count++; 
       notificationManager.notify(count, notification);//This will generate seperate notification each time server sends. 

      } catch (Throwable e) { 
       e.printStackTrace(); 
      } 
     } 
} 

:

.setStyle(new NotificationCompat.BigTextStyle().bigText(intent.getExtras().getString("message"))) // use this 
+2

Bu görüntünün boyutları ne olmalıdır, böylece tüm android cihazlarda benzer bir görünüm verebilir mi? Bildirimde –

+0

boyutunun boyutu düzeltildi mi veya değil mi? –

+0

Burada iki kez .setStyle() diyorsunuz; bigText için bir kez ve bigPicture için bir kez. Bu kasıtlı mı? – Project