通知オブジェクトを作る際に PendingIntent を絡めておけば良い。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 Intent intent = new Intent ( MainActivity . this , MainActivity . class ); PendingIntent pi = PendingIntent . getActivity ( MainActivity . this , 0 , intent , Intent . FLAG_ACTIVITY_NEW_TASK ); // notification NotificationManager nm = ( NotificationManager ) getSystemService ( Context . NOTIFICATION_SERVICE ); Notification n =