18
วิธีแสดงการแจ้งเตือนหลายรายการใน Android
ฉันได้รับการแจ้งเตือนเพียงครั้งเดียวและหากมีการแจ้งเตือนอีกรายการจะแทนที่การแจ้งเตือนก่อนหน้าและนี่คือรหัสของฉัน private static void generateNotification(Context context, String message, String key) { int icon = R.drawable.ic_launcher; long when = System.currentTimeMillis(); NotificationManager notificationManager = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); Notification notification = new Notification(icon, message, when); String title = context.getString(R.string.app_name); Intent notificationIntent = new Intent(context, FragmentOpenActivity.class); notificationIntent.putExtra(key, key); // set intent so it does …