ฉันมีการแจ้งเตือนในแอพพร้อมรหัสต่อไปนี้:
//Notification Start
notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
int icon = R.drawable.n1;
CharSequence tickerText = "Call Blocker";
long when = System.currentTimeMillis(); //now
Notification notification = new Notification(icon, tickerText, when);
Intent notificationIntent = new Intent(context, Main.class);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
Context context = getApplicationContext();
CharSequence title = "Call Blocker";
text = "Calls will be blocked while driving";
notification.setLatestEventInfo(context, title, text, contentIntent);
notification.flags |= Notification.FLAG_ONGOING_EVENT;
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
notificationManager.notify(1, notification);
}
การแจ้งเตือนของฉันทำงานได้ดีมาก แต่ปัญหาของฉันคือเมื่อฉันคลิกที่การแจ้งเตือนในศูนย์การแจ้งเตือนแอปของฉันไม่เริ่มทำงาน
โดยทั่วไปหลังจากคลิกที่การแจ้งเตือนของฉันไม่มีอะไรเกิดขึ้น! ฉันควรทำอย่างไรเพื่อเริ่มกิจกรรมหลักของฉันหลังจากคลิกที่การแจ้งเตือนของฉัน ขอบคุณ
Context context = getApplicationContext();
ก่อนNotification notification = new Notification(icon, tickerText, when);
บางทีคุณอาจจะไม่ผ่านบริบทที่ถูกต้องในการเริ่มกิจกรรม