PendingIntent contentIntent = PendingIntent.getActivity(context, 0,new Intent(), 0);
Вы передаете пустое намерение здесь. Измените это на намерение действия, которое вы хотите всем, например:
PendingIntent contentIntent = PendingIntent.getActivity(context, 0,new Intent(context,MyActivity.class), 0);
Попробуйте выполнить следующее действие:
public class TestAlarmActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// get a Calendar object with current time
Calendar cal = Calendar.getInstance();
// add 5 minutes to the calendar object
cal.add(Calendar.MINUTE, 5);
Intent intent = new Intent(this, AlarmReceiver.class);
intent.putExtra("alarm_message", "O'Doyle Rules!");
// In reality, you would want to have a static variable for the request code instead of 192837
PendingIntent sender = PendingIntent.getBroadcast(this, 192837, intent, PendingIntent.FLAG_UPDATE_CURRENT);
// Get the AlarmManager service
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis()+5000, sender);
Toast.makeText(this, "tii;;; inside", Toast.LENGTH_LONG).show();
}
и следующий Broadcastreceiver:
public class AlarmReceiver extends BroadcastReceiver {
private NotificationManager nm;
@Override
public void onReceive(Context context, Intent arg1) {
// TODO Auto-generated method stub
Toast.makeText(context, "inside", Toast.LENGTH_LONG).show();
nm = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
CharSequence from = "Raja";
CharSequence message = "My First App...";
PendingIntent contentIntent = PendingIntent.getActivity(context, 0,new Intent(), 0);
Notification notif = new Notification(R.drawable.ic_launcher,"Crazy About Android...", System.currentTimeMillis());
notif.setLatestEventInfo(context, from, message, contentIntent);
nm.notify(1, notif);
}
Я думаю, что ваша тревога не выполняется, потому что она уже прошла , поскольку вы передаете день месяца как 25