Injected settings start new task

- Bug: 13534214

Change-Id: I10b47f58651166a58a86efe8da2979e8f9a2a5cb
This commit is contained in:
Tom O'Neill
2014-03-19 10:38:05 -07:00
parent 1b35e479e6
commit a7f399123f

View File

@@ -254,8 +254,11 @@ class SettingsInjector {
Drawable icon = pm.getDrawable(info.packageName, info.iconId, null);
pref.setIcon(icon);
// Activity to start if they click on the preference. Must start in new task to ensure
// that "android.settings.LOCATION_SOURCE_SETTINGS" brings user back to Settings > Location.
Intent settingIntent = new Intent();
settingIntent.setClassName(info.packageName, info.settingsActivity);
settingIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
pref.setIntent(settingIntent);
prefs.add(pref);