I'm trying to set a notification that is repeated each day at a fixed hour.
I'm able to set a notification by clicking on an item in a list (but that's not really interesting...) I've tried several things but I still can't make it appear automatically nor daily...
Here is what I've done so far:
public class main extends Activity implements PersonneAdapterListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ArrayList<com.example.joris.list3.Personne> listP = com.example.joris.list3.Personne.getAListOfPersonne();
com.example.joris.list3.PersonneAdapter adapter = new com.example.joris.list3.PersonneAdapter(this, listP);
adapter.addListener(this);
ListView list = (ListView)findViewById(R.id.ListView01);
list.setAdapter(adapter);
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.HOUR_OF_DAY, 8);
calendar.set(Calendar.MINUTE, 30);
calendar.set(Calendar.SECOND, 0);
Intent intent1 = new Intent(main.this, NotifyService.class);
PendingIntent pendingIntent = PendingIntent.getBroadcast(main.this, 0,intent1, PendingIntent.FLAG_UPDATE_CURRENT);
AlarmManager am = (AlarmManager) main.this.getSystemService(main.this.ALARM_SERVICE);
am.setRepeating(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), AlarmManager.INTERVAL_DAY, pendingIntent);
}
@Override
public void onClickNom(com.example.joris.list3.Personne item, int position) {
Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Personne");
builder.setMessage("Vous avez cliqué sur : " + item.prenom);
builder.setPositiveButton("OK", null);
builder.show();
//Building the Notification
int NOTIFICATION_ID =1;
Context context = getApplicationContext();
NotificationCompat.Builder builder1 = new NotificationCompat.Builder(context);
builder1.setSmallIcon(R.drawable.eeo);
builder1.setContentTitle("Green Reminder");
builder1.setContentText(item.prenom);
NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
notificationManager.notify(NOTIFICATION_ID, builder1.build());
}}
And here is my other class:
public class NotifyService extends BroadcastReceiver {
public void onReceive (Context context, Intent intent){
long when = System.currentTimeMillis();
Intent notificationIntent = new Intent(context, main.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0,
notificationIntent, PendingIntent.FLAG_UPDATE_CURRENT);
Uri alarmSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
int NOTIFICATION_ID=1;
NotificationCompat.Builder mNotifyBuilder = new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.eeo)
.setContentTitle("Green Reminder")
.setContentText("test")
.setSound(alarmSound)
.setAutoCancel(true)
.setWhen(when)
.setContentIntent(pendingIntent)
.setVibrate(new long[]{1000, 1000, 1000, 1000, 1000});
NotificationManager notificationManager = (NotificationManager) context.getSystemService(context.NOTIFICATION_SERVICE);
notificationManager.notify(NOTIFICATION_ID, mNotifyBuilder.build());
}
}
Thanks