Android:如何在Android中设置日历警报

Android:如何在Android中设置日历警报,android,Android,是否可以在android中显示日历警报,以便在指定日期弹出警报并提醒用户有关任务。抱歉,SDK中当前没有日历API。但是,您可以使用AlarmManager实现自己的警报,在您计划使用它时显示自己的UI。首先,要在日历应用程序中设置警报,您必须进行以下操作: 现在,设置了报警接收器,让我们看看将设置和取消报警的类: package SomeApp.SomeApp; import java.util.Calendar; import java.lang.String; import an

是否可以在android中显示日历警报,以便在指定日期弹出警报并提醒用户有关任务。

抱歉,SDK中当前没有日历API。但是,您可以使用AlarmManager实现自己的警报,在您计划使用它时显示自己的UI。

首先,要在日历应用程序中设置警报,您必须进行以下操作:

现在,设置了报警接收器,让我们看看将设置和取消报警的类:

package SomeApp.SomeApp;

import java.util.Calendar;

import java.lang.String;

import android.app.AlarmManager;
import android.app.ListActivity;
import android.app.PendingIntent;
import android.os.Bundle;
import android.util.Log;

import android.content.Intent;
import android.widget.Toast;

/**
 * When this code is run only one alert will be displayed even though 2 alerts were
 * were setup (as one of them will be cancelled later on
 */
public class SomeApp extends ListActivity {
    /* for logging - see my tutorial on debuggin Android apps for more detail */
    private static final String TAG = "SomeApp "; 

    protected Toast mToast; 

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        //setContentView(R.layout.alert_list);
        try {

        Calendar cal = Calendar.getInstance();

        Intent intent        = new Intent(SomeApp.this, AReceiver.class);
        PendingIntent sender = PendingIntent.getBroadcast(this, 1234567, intent, 0);
        PendingIntent sende2 = PendingIntent.getBroadcast(this, 123123, intent, 0);

        AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
        am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis()+30000, sender); // to be alerted 30 seconds from now
        am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis()+15000, sende2); // to be alerted 15 seconds from now

        /* To show how alarms are cancelled we will create a new        Intent and a new PendingIntent with the
        * same requestCode as the PendingIntent alarm we want to cancel. In this case, it is 1234567.
            * Note: The intent and PendingIntent have to be the same as the ones used to create the alarms.
            */
        Intent intent1        = new Intent(SomeApp.this, AReceiver.class);
        PendingIntent sender1 = PendingIntent.getBroadcast(this, 1234567, intent1, 0);
        AlarmManager am1 = (AlarmManager) getSystemService(ALARM_SERVICE);
        am1.cancel(sender1);

        } catch (Exception e) {
            Log.e(TAG, "ERROR IN CODE:"+e.toString());
        }
    }

}
您会注意到,这只是一个“一次性”警报。如果你想设置一个重复报警,Android的文档中会对此进行解释。不过,如果有需求的话,我也会写下来。现在,让我们检查一下代码。要设置警报,您需要4件事:

设置警报的类 报警“关闭”时将调用的类 警报应熄灭的时间 PendingEvent中使用的请求代码(将用作识别报警的唯一ID)。 要取消警报,您需要三件事:

设置警报的类 当警报“熄灭”时要调用的类 用于PendingEvent对象的请求代码。 我们已经讨论了两件事——清单文件中接收方的声明以及设置和取消报警的类。现在,我们需要看看当警报响起时将调用的类

package someApp.someApp;

import java.util.Calendar;

import android.content.Context;
import android.content.BroadcastReceiver;
import android.util.Log;
import android.widget.Toast;

/** All receiver classes must extend BroadcastReceiver */
public class AReceiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context con, Intent in) {
        try {
            /* Display an alert */
            Toast.makeText(con, "hello my jello ", Toast.LENGTH_LONG).show();
        } catch (Exception r) {
            Toast.makeText(con, "You were supposed to do something"
                    +" now but I can't retrieve what it was.",
                    Toast.LENGTH_SHORT).show();
            Log.e("ALARM_RECEIVER", r.toString());
        }
    }
}

你也可以使用其他的ans

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main); 

Calendar cal = Calendar.getInstance();

cal.add(Calendar.DAY_OF_YEAR, 0);
cal.set(Calendar.HOUR_OF_DAY, 9);
cal.set(Calendar.MINUTE, 01);
cal.set(Calendar.SECOND, 0);
setAlarm(cal);

cal.set(Calendar.HOUR_OF_DAY, 12);
cal.set(Calendar.MINUTE, 30);
setAlarm(cal);

//etc

}

public void setAlarm(Calendar cal) {

try {   

Intent intent        = new Intent(Alarm.this, Alarm1.class);
PendingIntent sender = PendingIntent.getBroadcast(this, 1234567, intent, 0);
PendingIntent sende2 = PendingIntent.getBroadcast(this, 123123, intent, 0);

AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), sender); // to be alerted 30 seconds from now
am.set(AlarmManager.RTC_WAKEUP, cal.getTimeInMillis(), sende2); // to be alerted 15 seconds from now

/* To show how alarms are cancelled we will create a new        Intent and a new PendingIntent with the
* same requestCode as the PendingIntent alarm we want to cancel. In this case, it is 1234567.
    * Note: The intent and PendingIntent have to be the same as the ones used to create the alarms.
    */
Intent intent1        = new Intent(Alarm.this, Alarm1.class);
PendingIntent sender1 = PendingIntent.getBroadcast(this, 1234567, intent1, 0);
AlarmManager am1 = (AlarmManager) getSystemService(ALARM_SERVICE);
am1.cancel(sender1);


} catch (Exception e) {
    Log.e(TAG, "ERROR IN CODE:"+e.toString());
}
}