Service から notification を発行し、notification をタップした際に activityを起動、そのactivity に値を渡したかったので以下のようなコードを書いた。 Notification notification = new Notification(R.drawable.icon,"Some message",System.currentTimeMillis()); Intent intent = new Intent(this, com.example.SomeActivity.class) ; intent.putExtra("PARAM", 1) ; PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,intent,0); notification.setLatestE