ฉันต้องการให้ปิดการแจ้งเตือนหลังจากที่ผู้ใช้คลิกที่มัน ฉันเห็นว่าทุกคนบอกให้ใช้แฟล็ก แต่ฉันไม่พบแฟล็กที่ใดเลยเพราะฉันใช้คลาส NotificationCompat.Builder ไม่ใช่คลาส Notification มีใครทราบวิธีลบการแจ้งเตือนด้วยตัวเองบ้างไหม
นี่คือรหัสของฉันเมื่อฉันตั้งค่าการแจ้งเตือน:
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());