अगर अधिसूचना के साथ कुछ समस्याएं मिलीं तो मैं अधिसूचना बार में दिखाना चाहता हूं। हालाँकि, मैंने सूचना फ़्लैग को अधिसूचना पर सेट कर दिया है 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);
और NotificationBuilder का उपयोग करके अंतर पैदा करती हैंmNotificationManager.notify(1, mBuilder.build());
? धन्यवाद।