현재 알람 서비스를 완성하였습니다. 
일정 시간뒤 알람이 오면 알람 버튼을 클릭했을때 어플이 메인 페이지로 이동하고 싶습니다. 

어느 순간부터 알람 버튼을 눌러도 아무런 작동을 하지 않아서요. 

방법이 없을까요?

public void onReceive(Context contextArg, Intent intentArg)
{

//알림 서비스를 위해서 필요 public NotificationManager nm; //알림 서비스를 위해서 필요 public PendingIntent intentNofoty;

nm = (NotificationManager)contextArg.getSystemService(Context.NOTIFICATION_SERVICE); intentNofoty = PendingIntent.getActivity( contextArg, 0, new Intent(), 0);

으로 되어 있습니다.