मेरे पास एंड्रॉइड में एक अग्रभूमि सेवा सेटअप है। मैं अधिसूचना पाठ को अद्यतन करना चाहूंगा। मैं नीचे दिखाए गए अनुसार सेवा बना रहा हूं।
मैं इस अग्रभूमि सेवा के भीतर सेटअप सूचना पाठ को कैसे अपडेट कर सकता हूं? अधिसूचना अद्यतन करने के लिए सबसे अच्छा अभ्यास क्या है? किसी भी नमूना कोड की सराहना की जाएगी।
public class NotificationService extends Service {
private static final int ONGOING_NOTIFICATION = 1;
private Notification notification;
@Override
public void onCreate() {
super.onCreate();
this.notification = new Notification(R.drawable.statusbar, getText(R.string.app_name), System.currentTimeMillis());
Intent notificationIntent = new Intent(this, AbList.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
this.notification.setLatestEventInfo(this, getText(R.string.app_name), "Update This Text", pendingIntent);
startForeground(ONGOING_NOTIFICATION, this.notification);
}
मैं अपनी मुख्य गतिविधि में सेवा बना रहा हूँ जैसा कि नीचे दिखाया गया है:
// Start Notification Service
Intent serviceIntent = new Intent(this, NotificationService.class);
startService(serviceIntent);