অ্যান্ড্রয়েডে আমার অগ্রভাগের পরিষেবা সেটআপ রয়েছে। আমি বিজ্ঞপ্তি পাঠ্য আপডেট করতে চাই। আমি নীচে প্রদর্শিত হিসাবে পরিষেবা তৈরি করছি।
এই অগ্রভাগ পরিষেবাটির মধ্যে সেটআপ করা বিজ্ঞপ্তি পাঠ্য কীভাবে আপডেট করব? বিজ্ঞপ্তি আপডেট করার জন্য সেরা অনুশীলন কী? যে কোনও নমুনা কোড প্রশংসা করা হবে।
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);