RTC1 '알람기능' 구현을 위한 이론(PendingIntent, AlarmManager) 'PendingIntent'는 Alarm이나 Notification에 intent를 등록하기 위해서 사용 PendingIntent를 이용해서는 activity, broadcast, service를 실행 시킬 수 있다. 따라서 getActivity, getBroadcast, getService 메소드로 생성할 수 있게 되어있다. 1. 실행시키고 싶은 정보가 담긴 Intent 작성 Intent intent = new Intent(this, ReceiverAlarm.class); 2. PendingIntent작성(4개의 parameter에 대해서) PendingIntent pending; pending = PendingIntent.getBroadcast(context, id 값, intent, flag); 1.. 2016. 8. 15. 이전 1 다음