您可以使用BroadcastReceiver
设置“闹钟”。不是通知,而是警报?
所以基本上如果我点击一个按钮,它可以设置从现在开始20分钟或者我的变量的警报。我可以弄清楚如何使用它来设置从当前时间20分钟的警报,但我可以做一个吐司通知,就我所知。
请注意,我的代码在我的代码中是20秒
public class SimpleSleepActivity extends Activity {
/** Called when the activity is first created. */
Button setAlarm, setTimer;
int hours = 1, alarmSec = 10;
Toast mToast;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setAlarm = (Button) findViewById(R.id.bSetAlarm);
setTimer = (Button) findViewById(R.id.bSetTimer);
setTimer.setOnClickListener(mAlarmFromNow);
}
private OnClickListener mAlarmFromNow = new OnClickListener() {
public void onClick(View v) {
// When the alarm goes off, broadcast an Intent to the
// BroadcastReceiver. This is an Intent with an explicit class
// name to have a receiver instantiated and called, and then
// create an IntentSender to have the intent executed as a broadcast.
Intent intent = new Intent(SimpleSleepActivity.this,
AlarmFromNow.class);
PendingIntent sender = PendingIntent.getBroadcast(
SimpleSleepActivity.this, 0, intent, 0);
// Finding the current time and setting and alarm for XX seconds
// from that time
Calendar calendar = Calendar.getInstance();
calendar.setTimeInMillis(System.currentTimeMillis());
calendar.add(Calendar.SECOND, alarmSec);
// Scheduling the alarm
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), sender);
if (mToast != null) {
mToast.cancel();
}
mToast = Toast.makeText(SimpleSleepActivity.this,
//Show the user what they imputed
"The alarm will go off in " + alarmSec + " Seconds", Toast.LENGTH_LONG);
mToast.show();
}
};
}
我的另一课是:
public class AlarmFromNow extends BroadcastReceiver {
public void onReceive(Context context, Intent intent) {
//Display a toast after alarmSec is counted
Toast.makeText(context, R.string.alarm_from_now, Toast.LENGTH_LONG)
.show();
}
}