Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to android. I want to set Notification locally. And i want to fire it on specific day and time. But if I set it to future it fires immediately?

 Calendar calendar = Calendar.getInstance();       

         //---sets the time for the alarm to trigger---
         calendar.set(Calendar.YEAR, 2013);
         calendar.set(Calendar.MONTH, 1);
         calendar.set(Calendar.DAY_OF_MONTH, 11);                 
         calendar.set(Calendar.HOUR_OF_DAY, 15);
         calendar.set(Calendar.MINUTE, 54);
         //calendar.set(calendar.AM_PM,1);
         calendar.set(Calendar.SECOND, 0);


        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);

        int icon = R.drawable.alp_btn_code_lock_touched_holo;        
        CharSequence tickerText = "Hello"; // ticker-text
        long when = System.currentTimeMillis();         
        Context context = getApplicationContext();     
        CharSequence contentTitle = "Hello";  
        CharSequence contentText = "Hello";      
        Intent notificationIntent = new Intent(this, Login.class);
        PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
        Notification notification = new Notification(icon, tickerText, calendar.getTimeInMillis());
        notification.setLatestEventInfo(context, contentTitle, contentText, contentIntent);


        mNotificationManager.notify(1, notification);

Thanks for Help

share|improve this question

2 Answers

up vote 0 down vote accepted

Use Alarmmanager in Broadcasrreceiverit usefull as your code changes like this

 Calendar calendar = Calendar.getInstance();       

     //---sets the time for the alarm to trigger---
     calendar.set(Calendar.YEAR, 2013);
     calendar.set(Calendar.MONTH, 1);
     calendar.set(Calendar.DAY_OF_MONTH, 11);                 
     calendar.set(Calendar.HOUR_OF_DAY, 15);
     calendar.set(Calendar.MINUTE, 54);
     //calendar.set(calendar.AM_PM,1);
     calendar.set(Calendar.SECOND, 0);

  Intent intentval = new Intent(YourActivity.this, TimeAlarm.class);

    PendingIntent pendingIntent = PendingIntent.getBroadcast(this, 0, intentval, 0);
    alarm.set(AlarmManager.ELAPSED_REALTIME,  calendar.getTimeInMillis() , pendingIntent);

in TimeAlarm.class use like this

public class TimeAlarm extends BroadcastReceiver {
NotificationManager nm;

@SuppressWarnings("deprecation")
@Override
public void onReceive(Context context, Intent intent) {     

    int notificationId = Integer.parseInt(intent.getData().getSchemeSpecificPart());     

    Intent alarmIntent = new Intent(context, TimeAlarm.class);
    alarmIntent.setData(Uri.parse("timer:" + notificationId));
    //alarmIntent.setAction(String.valueOf(alarm.ID));
    AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
    PendingIntent displayIntent = PendingIntent.getBroadcast(context, 0, alarmIntent, 0);
    alarmManager.cancel(displayIntent);     

    nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);       

    PendingIntent contentIntent = PendingIntent.getActivity(context, 0, new Intent(), 0);
    Notification notif = new Notification(icon, tickerText, System.currentTimeMillis());
    notif.setLatestEventInfo(context, contentTitle, contentText, contentIntent);
    nm.notify(1, notif);        
share|improve this answer
But by using this will my problem solved? – user1162056 Feb 11 at 11:15
may be first we check... – NagarjunaReddy Feb 11 at 11:19

Use AlarmManager for this instead of directly using notification. For this also you have to implement BroadCastReceiver check out links

http://smartandroidians.blogspot.in/2010/04/alarmmanager-and-notification-in.html

http://maephv.blogspot.in/2011/08/android-alarmmanager-and-notification.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.