알림 클릭 : 활동이 이미 열려 있습니다
클릭하면 특정 활동을 여는 알림이있는 응용 프로그램이 있습니다. 알림을 클릭하고 활동이 이미 열려 있으면 다시 시작 되지 않고 바로 시작됩니다. 나는 깃발 FLAG_ACTIVITY_BROUGHT_TO_FRONT이나로 할 수 있다고 생각 FLAG_ACTIVITY_REORDER_TO_FRONT했지만 다시 열어서 활동을 두 번했습니다. 이것은 내 코드입니다. event_notification = new Notification(R.drawable.icon, mContext.getString(R.string.event_notif_message), System.currentTimeMillis()); Intent notificationIntent = new Intent(mContext, EventListActivity.class); notificationIntent.setFlags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT); sendNotification(event_notification, …