활동 외부에서 startActivity ()를 호출합니까?
AlarmManager신호를 방송하는 의도를 트리거하기 위해를 사용하고 있습니다. 다음은 내 코드입니다. AlarmManager mgr = (AlarmManager) getSystemService(Context.ALARM_SERVICE); Intent i = new Intent(this, Wakeup.class); try { PendingIntent pi = PendingIntent.getBroadcast(this, 0, i, 0); Long elapsed += // sleep time; mgr.set(AlarmManager.RTC_WAKEUP, elapsed, pi); } catch(Exception r) { Log.v(TAG, "RunTimeException: " + r); } 에서이 …