หากมีปัญหาบางอย่างเกี่ยวกับการแจ้งเตือนฉันต้องการให้แสดงในแถบการแจ้งเตือน แม้ว่าฉันตั้งค่าสถานะNotification.DEFAULT_LIGHTS & Notification.FLAG_AUTO_CANCEL
การแจ้งเตือนเป็นการแจ้งเตือนจะไม่หายไปหลังจากคลิก มีความคิดอะไรที่ฉันทำผิด?
NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
int icon = R.drawable.icon;
CharSequence tickerText = "Ticker Text";
long time = System.currentTimeMillis();
Notification notification = new Notification(icon, tickerText, time);
notification.flags = Notification.DEFAULT_LIGHTS & Notification.FLAG_AUTO_CANCEL;
Context context = getApplicationContext();
CharSequence contentTitle = "Title";
CharSequence contentText = "Text";
Intent notificationIntent = new Intent(this, SilentFlipConfiguration.class);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
mNotificationManager.notify(1,notification);
mNotificationManager.notify(1,notification);
และการใช้ NotificationBuildermNotificationManager.notify(1, mBuilder.build());
? ขอบคุณ