알림 클릭 시, 원하는 Activity로 이동하기 위해 PendingIntent를 활용한다. Intent notiIntent = new Intent(this, (클릭 시 이동하려는 Activity).class); PendingIntent notiPendingIntent = PendingIntent.getActivity( this, 0, notiIntent, PendingIntent.FLAG_UPDATE_CURRENT); NotificationCompat.Builder notifyBuilder; notifyBuilder = new NotificationCompat.Builder(this, CHANNEL_ID) .// .setFullScreenIntent(notiPendingIntent, false) .//..