I'm working with alarm and notification , but when the alarm goes off I get run time error This is AlarmDetails.java

package net.learn2develop.UsingNotifications;

import android.app.Activity;
import android.app.NotificationManager;
import android.os.Bundle;

public class AlarmDetails extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.alarmdetails);

    //---look up the notification manager service---
    NotificationManager nm = (NotificationManager) 
        getSystemService(NOTIFICATION_SERVICE);

    //---cancel the notification---
    nm.cancel(getIntent().getExtras().getInt("NotifID"));        
}
}

This is MainActivity.java

package net.learn2develop.UsingNotifications;

import android.app.Activity;
import android.os.Bundle;
import java.util.Calendar;
import android.app.AlarmManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.view.View;
import android.widget.Button;
import android.widget.DatePicker;
import android.widget.TimePicker;

public class MainActivity extends Activity {    
TimePicker timePicker;
DatePicker datePicker;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    //---Button view---
    Button btnOpen = (Button) findViewById(R.id.btnSetAlarm);
    btnOpen.setOnClickListener(new View.OnClickListener() {

        public void onClick(View v) {                
            timePicker = (TimePicker) findViewById(R.id.timePicker);
            datePicker = (DatePicker) findViewById(R.id.datePicker);                   

            //---use the AlarmManager to trigger an alarm---
            AlarmManager alarmManager = (AlarmManager) getSystemService(ALARM_SERVICE);                 

            //---get current date and time---
            Calendar calendar = Calendar.getInstance();       

            //---sets the time for the alarm to trigger---
            calendar.set(Calendar.YEAR, datePicker.getYear());
            calendar.set(Calendar.MONTH, datePicker.getMonth());
            calendar.set(Calendar.DAY_OF_MONTH, datePicker.getDayOfMonth());                 
            calendar.set(Calendar.HOUR_OF_DAY, timePicker.getCurrentHour());
            calendar.set(Calendar.MINUTE, timePicker.getCurrentMinute());
            calendar.set(Calendar.SECOND, 0);

            //---PendingIntent to launch activity when the alarm triggers---                    
            Intent i = new Intent("net.learn2develop.DisplayNotification");

            //---assign an ID of 1---
            i.putExtra("NotifID", 1);                                

            PendingIntent displayIntent = PendingIntent.getActivity(
                getBaseContext(), 0, i, 0);               

            //---sets the alarm to trigger---
            alarmManager.set(AlarmManager.RTC_WAKEUP, 
                calendar.getTimeInMillis(), displayIntent);
        }
    }); 
  }
  }

This is DisplayNotifications.java

package net.learn2develop.UsingNotifications;

import android.app.Activity;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Intent;
import android.os.Bundle;

public class DisplayNotifications extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    //---get the notification ID for the notification; 
    // passed in by the MainActivity---
    int notifID = getIntent().getExtras().getInt("NotifID");

    //---PendingIntent to launch activity if the user selects 
    // the notification---
    Intent i = new Intent("net.learn2develop.AlarmDetails");
    i.putExtra("NotifID", notifID);  

    PendingIntent detailsIntent = 
        PendingIntent.getActivity(this, 0, i, 0);

    NotificationManager nm = (NotificationManager)
        getSystemService(NOTIFICATION_SERVICE);
    Notification notif = new Notification(
        R.drawable.icon, 
        "Time's up!",
        System.currentTimeMillis());

    CharSequence from = "AlarmManager - Time's up!";
    CharSequence message = "This is your alert, courtesy of the AlarmManager";        
    notif.setLatestEventInfo(this, from, message, detailsIntent);

    //---100ms delay, vibrate for 250ms, pause for 100 ms and
    // then vibrate for 500ms---
    notif.vibrate = new long[] { 100, 250, 100, 500};        
    nm.notify(notifID, notif);
    //---destroy the activity---
    finish();
}
}

and this is AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="net.learn2develop.UsingNotifications"
  android:versionCode="1"
  android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />

<uses-permission android:name="android.permission.VIBRATE"></uses-permission>

<application android:icon="@drawable/icon" android:label="@string/app_name">
    <activity android:name=".MainActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>        
    <activity android:name=".AlarmDetails" 
        android:label="Details of the alarm">
        <intent-filter>
            <action android:name="net.learn2develop.AlarmDetails" />
            <category android:name="android.intent.category.DEFAULT" /> 
        </intent-filter>
    </activity>

    <activity android:name=".DisplayNotification" >
        <intent-filter>
            <action android:name="net.learn2develop.DisplayNotification" />
            <category android:name="android.intent.category.DEFAULT" /> 
        </intent-filter>
    </activity>

</application>
</manifest>
link|improve this question
What is the error? What is logged in logcat when the error occurs? – spatulamania Dec 5 '11 at 9:40
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.