I am using this notification code:
package com.example.mega; import android.app.Notification; import android.app.NotificationManager; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class TimeAlarm extends BroadcastReceiver { NotificationManager nm; @Override public void onReceive(Context context, Intent intent) { nm = (NotificationManager) context .getSystemService(Context.NOTIFICATION_SERVICE); CharSequence from = "Tech"; CharSequence message = "Check out our NEW COLLECTION !!"; PendingIntent contentIntent = PendingIntent.getActivity(context, 0, new Intent(), 0); Notification notif = new Notification(R.drawable.icon, "Check out our NEW COLLECTION !!" , System.currentTimeMillis()); notif.setLatestEventInfo(context, from, message, contentIntent); nm.notify(1, notif); } }
As you can see, I have not added AlarmManager yet, since I have no experience using it, I am new to android. What should I add to the code to show a notification every 24 hours?
source share