Correctly propagate bundle extra from intent to fragment am: e8666c6664

am: e9e8858d3b

Change-Id: Id90c72daf4a3b15b43dd87aa87bd54c7e3b829ad
This commit is contained in:
Fan Zhang
2018-03-06 01:13:54 +00:00
committed by android-build-merger

View File

@@ -523,7 +523,7 @@ public class SettingsActivity extends SettingsDrawerActivity
if (startingFragment != null) {
Intent modIntent = new Intent(superIntent);
modIntent.putExtra(EXTRA_SHOW_FRAGMENT, startingFragment);
Bundle args = superIntent.getExtras();
Bundle args = superIntent.getBundleExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS);
if (args != null) {
args = new Bundle(args);
} else {