Intent with old extra in onCreate() for singleTask Activity
问题 For example I created project with 2 activities: FirstActivity with android:launchMode="singleTask" flag and SecondActivity. At first user starts FirstActivity and after this SecondActivity will start on button click. From SecondActivity we create status bar notification. Intent intent = new Intent(SecondActivity.this, FirstActivity.class); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.putExtra(FirstActivity.ARG, true); NotificationCompat.Builder builder = new NotificationCompat