
첫번째처럼 나와야하는데 2번째 처럼 나오는 원인이 무엇인가요
notification= new Notification.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setWhen(System.currentTimeMillis())
.setContentTitle("앱")
.setContentText("X 표시를 누르시면 종료됩니다.")
.addAction(R.drawable.x, "어플 종료", pfinishIntent)
.setContentIntent(pendingIntent)
.setPriority(NotificationCompat.PRIORITY_MAX)
.build();