사용자가 클릭하면 알림이 닫히기를 바랍니다. 나는 모두가 플래그를 사용하라고 말하는 것을 보았지만 Notification 클래스가 아닌 NotificationCompat.Builder 클래스를 사용하고 있기 때문에 어디서나 플래그를 찾을 수 없습니다. 누군가 자신이 알림을 제거하는 방법을 알고 있습니까?
알림을 설정할 때 내 코드는 다음과 같습니다.
NotificationCompat.Builder mBuilder =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.ic_launcher)
.setContentTitle("New Question")
.setContentText("" + QuestionData.getAuthor().getUserName() + ": " + QuestionData.getQuestion() + "");
Intent openHomePageActivity = new Intent("com.example.ihelp.HOMEPAGEACTIVITY");
TaskStackBuilder stackBuilder = TaskStackBuilder.create(this);
stackBuilder.addNextIntent(openHomePageActivity);
PendingIntent resultPendingIntent =
stackBuilder.getPendingIntent(
0,
PendingIntent.FLAG_UPDATE_CURRENT
);
mBuilder.setContentIntent(resultPendingIntent);
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
mNotificationManager.notify(0, mBuilder.build());