2016-11-09 4 views
3

Я недавно использовал этот учебник:Невозможно изменить мое уведомление с Firebase ICON андроида

http://www.androidhive.info/2012/10/android-push-notifications-using-google-cloud-messaging-gcm-php-and-mysql/

из androidhive, но проблема в том, что я не могу изменить значок уведомлений, я попробовал все возможные пути к измените его, но он не работает даже при поиске в stackoverflow.

это мой класс

NotificationUtils.java

private static String TAG = NotificationUtils.class.getSimpleName(); 

private Context mContext; 

public NotificationUtils(Context mContext) { 
    this.mContext = mContext; 
} 

/** 
* Method checks if the app is in background or not 
*/ 
public static boolean isAppIsInBackground(Context context) { 
    boolean isInBackground = true; 
    ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE); 
    if (Build.VERSION.SDK_INT > Build.VERSION_CODES.KITKAT_WATCH) { 
     List<ActivityManager.RunningAppProcessInfo> runningProcesses = am.getRunningAppProcesses(); 
     for (ActivityManager.RunningAppProcessInfo processInfo : runningProcesses) { 
      if (processInfo.importance == ActivityManager.RunningAppProcessInfo.IMPORTANCE_FOREGROUND) { 
       for (String activeProcess : processInfo.pkgList) { 
        if (activeProcess.equals(context.getPackageName())) { 
         isInBackground = false; 
        } 
       } 
      } 
     } 
    } else { 
     List<ActivityManager.RunningTaskInfo> taskInfo = am.getRunningTasks(1); 
     ComponentName componentInfo = taskInfo.get(0).topActivity; 
     if (componentInfo.getPackageName().equals(context.getPackageName())) { 
      isInBackground = false; 
     } 
    } 

    return isInBackground; 
} 

// Clears notification tray messages 
public static void clearNotifications(Context context) { 
    NotificationManager notificationManager = (NotificationManager) context.getSystemService(NOTIFICATION_SERVICE); 
    notificationManager.cancelAll(); 
} 

private static long getTimeMilliSec(String timeStamp) { 
    @SuppressLint("SimpleDateFormat") SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 
    try { 
     Date date = format.parse(timeStamp); 
     return date.getTime(); 
    } catch (ParseException e) { 
     e.printStackTrace(); 
    } 
    return 0; 
} 

public void showNotificationMessage(String title, String message, String timeStamp, Intent intent) { 
    showNotificationMessage(title, message, timeStamp, intent, null); 
} 

public void showNotificationMessage(final String title, final String message, final String timeStamp, Intent intent, String imageUrl) { 
    // Check for empty push message 
    if (TextUtils.isEmpty(message)) 
     return; 


    // notification icon 
    final int icon = R.mipmap.ic_logo; 

    intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP); 
    final PendingIntent resultPendingIntent = 
      PendingIntent.getActivity(
        mContext, 
        0, 
        intent, 
        PendingIntent.FLAG_CANCEL_CURRENT 
      ); 

    final NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
      mContext); 

    final Uri alarmSound = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE 
      + "://" + mContext.getPackageName() + "/raw/notification"); 

    if (!TextUtils.isEmpty(imageUrl)) { 

     if (imageUrl != null && imageUrl.length() > 4 && Patterns.WEB_URL.matcher(imageUrl).matches()) { 

      Bitmap bitmap = getBitmapFromURL(imageUrl); 

      if (bitmap != null) { 
       showBigNotification(bitmap, mBuilder, icon, title, message, timeStamp, resultPendingIntent, alarmSound); 
      } else { 
       showSmallNotification(mBuilder, icon, title, message, timeStamp, resultPendingIntent, alarmSound); 
      } 
     } 
    } else { 
     showSmallNotification(mBuilder, icon, title, message, timeStamp, resultPendingIntent, alarmSound); 
     playNotificationSound(); 
    } 
} 

private void showSmallNotification(NotificationCompat.Builder mBuilder, int icon, String title, String message, String timeStamp, PendingIntent resultPendingIntent, Uri alarmSound) { 

    NotificationCompat.InboxStyle inboxStyle = new NotificationCompat.InboxStyle(); 

    inboxStyle.addLine(message); 

    Notification notification; 
    notification = mBuilder 
      .setTicker(title).setWhen(0) 
      .setAutoCancel(true) 
      .setContentTitle(title) 
      .setContentIntent(resultPendingIntent) 
      .setSound(alarmSound) 
      .setStyle(inboxStyle) 
      .setWhen(getTimeMilliSec(timeStamp)) 
      .setSmallIcon(icon) 
      .setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon)) 
      .setContentText(message) 
      .build(); 

    NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(NOTIFICATION_SERVICE); 
    notificationManager.notify(Config.NOTIFICATION_ID, notification); 
} 

private void showBigNotification(Bitmap bitmap, NotificationCompat.Builder mBuilder, int icon, String title, String message, String timeStamp, PendingIntent resultPendingIntent, Uri alarmSound) { 
    NotificationCompat.BigPictureStyle bigPictureStyle = new NotificationCompat.BigPictureStyle(); 
    bigPictureStyle.setBigContentTitle(title); 
    bigPictureStyle.setSummaryText(Html.fromHtml(message).toString()); 
    bigPictureStyle.bigPicture(bitmap); 
    Notification notification; 
    notification = mBuilder 
      .setTicker(title) 
      .setWhen(0) 
      .setAutoCancel(true) 
      .setContentTitle(title) 
      .setContentIntent(resultPendingIntent) 
      .setSound(alarmSound) 
      .setStyle(bigPictureStyle) 
      .setWhen(getTimeMilliSec(timeStamp)) 
      .setSmallIcon(icon) 
      .setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon)) 
      .setContentText(message) 
      .build(); 

    NotificationManager notificationManager = (NotificationManager) mContext.getSystemService(NOTIFICATION_SERVICE); 
    notificationManager.notify(Config.NOTIFICATION_ID_BIG_IMAGE, notification); 
} 

/** 
* Downloading push notification image before displaying it in 
* the notification tray 
*/ 
private Bitmap getBitmapFromURL(String strURL) { 
    try { 
     URL url = new URL(strURL); 
     HttpURLConnection connection = (HttpURLConnection) url.openConnection(); 
     connection.setDoInput(true); 
     connection.connect(); 
     InputStream input = connection.getInputStream(); 
     return BitmapFactory.decodeStream(input); 
    } catch (IOException e) { 
     e.printStackTrace(); 
     return null; 
    } 
} 

// Playing notification sound 
public void playNotificationSound() { 
    try { 
     Uri alarmSound = Uri.parse(ContentResolver.SCHEME_ANDROID_RESOURCE 
       + "://" + mContext.getPackageName() + "/raw/notification"); 
     Ringtone r = RingtoneManager.getRingtone(mContext, alarmSound); 
     r.play(); 
    } catch (Exception e) { 
     e.printStackTrace(); 
    } 
} 

ответ

0

Если вы хотите изменить значок, показанный в оповещении попробовать, вы должны изменить здесь

// notification icon 
    final int icon = R.mipmap.ic_logo; 

Например, если у вас есть a **new_logo** изображение в Drawable папка изменить как ниже -

final int icon = R.drawable.new_logo; 

Изменить код:

notification = mBuilder 
      .setSmallIcon(icon) 
      .setTicker(title).setWhen(0) 
      .setAutoCancel(true) 
      .setContentTitle(title) 
      .setContentIntent(resultPendingIntent) 
      .setSound(alarmSound) 
      .setStyle(inboxStyle) 
      .setWhen(getTimeMilliSec(timeStamp)) 
      .setSmallIcon(R.mipmap.ic_logo) 
      .setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon)) 
      .setContentText(message) 
      .build(); 

To:

notification = mBuilder 
      .setSmallIcon(icon) 
      .setTicker(title).setWhen(0) 
      .setAutoCancel(true) 
      .setContentTitle(title) 
      .setContentIntent(resultPendingIntent) 
      .setSound(alarmSound) 
      .setStyle(inboxStyle) 
      .setWhen(getTimeMilliSec(timeStamp)) 
      .setLargeIcon(BitmapFactory.decodeResource(mContext.getResources(), icon)) 
      .setContentText(message) 
      .build(); 

Я видел, что вы установили mBuilder.setSmallIcon несколько раз.

+0

Я попытался это уже, это не работает :( –

+0

я изменил его, но это то же самое –

+0

Есть ли у вас внести изменения в обоих showBigNotification() и showSmallNotification() методы. – Akshay

0

Попробуйте это один раз.

NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this) 
       .setSmallIcon(R.mipmap.your_icon) 
       .setContentTitle("Firebase Push Notification") 
       .setContentText(messageBody) 
       .setAutoCancel(true) 
       .setSound(defaultSoundUri) 
       .setContentIntent(pendingIntent); 

     NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
     notificationManager.notify(0, notificationBuilder.build()); 
+0

Это тоже не работает :( –