আমার অ্যাপে নিম্নলিখিত কোড সহ একটি বিজ্ঞপ্তি রয়েছে:
//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);