public void registerAlarm()
{
Log.e("###", "registerAlarm");
Intent intent = new Intent(this, AlarmService_Service.class);
PendingIntent sender = PendingIntent.getBroadcast(this, 0, intent, 0);
try
{
// 내일 아침 8시 10분에 처음 시작해서, 24시간 마다 실행되게
Date tomorrow = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").parse("2012-02-25 08:10:00");
AlarmManager am = (AlarmManager) getSystemService(ALARM_SERVICE);
am.setInexactRepeating(AlarmManager.RTC, tomorrow.getTime(), 24 * 60 * 60 * 1000, sender);
} catch (ParseException e)
{
e.printStackTrace();
}
}
'옛날' 카테고리의 다른 글
삼성 갤럭시S7 2월21일 발표, 3월11일 출시 (0) | 2016.02.01 |
---|---|
[Android] ANR 이란? (0) | 2016.01.29 |
[Android] Webview url 숨기기 (0) | 2016.01.29 |
[Android] webview ssl 문제 (0) | 2016.01.29 |
Samsung SSD 850 EVO (0) | 2016.01.27 |