3
PendingIntent는 인 텐트 엑스트라를 보내지 않습니다.
내 MainActicity 시작 RefreshServiceA를 Intent있다 boolean라는 여분 isNextWeek. 내가 RefreshService하게 Notification내 시작하는 MainActivity그것을하면 사용자가 클릭합니다. 이것은 다음과 같습니다. Log.d("Refresh", "RefreshService got: isNextWeek: " + String.valueOf(isNextWeek)); Intent notificationIntent = new Intent(this, MainActivity.class); notificationIntent.putExtra(MainActivity.IS_NEXT_WEEK, isNextWeek); Log.d("Refresh", "RefreshService put in Intent: isNextWeek: " + String.valueOf(notificationIntent.getBooleanExtra(MainActivity.IS_NEXT_WEEK,false))); pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0); builder = …