diff --git a/res/values/strings.xml b/res/values/strings.xml index ec2ff5558b3..d5259a6a450 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -8873,7 +8873,7 @@ Notification cooldown Use notification cooldown - When you receive many notifications within a short time, your device will lower it\u2019s volume and minimize alerts for up to 2 minutes. Calls, alarms, and priority conversations aren\u2019t affected. + When you receive many notifications within a short time, your device will lower its volume and minimize alerts for up to 2 minutes. Calls, alarms, and priority conversations are not affected. \n\nNotifications received during the cooldown can be found by pulling down from the top of the screen. Apply to work profiles Apply to work profile apps diff --git a/src/com/android/settings/privatespace/onelock/UseOneLockControllerSwitch.java b/src/com/android/settings/privatespace/onelock/UseOneLockControllerSwitch.java index dfac100a522..1e503ecdebb 100644 --- a/src/com/android/settings/privatespace/onelock/UseOneLockControllerSwitch.java +++ b/src/com/android/settings/privatespace/onelock/UseOneLockControllerSwitch.java @@ -16,6 +16,8 @@ package com.android.settings.privatespace.onelock; +import static com.android.settings.password.ChooseLockGeneric.ChooseLockGenericFragment.HIDE_INSECURE_OPTIONS; +import static com.android.settings.password.ChooseLockSettingsHelper.EXTRA_KEY_CHOOSE_LOCK_SCREEN_TITLE; import static com.android.settings.privatespace.PrivateSpaceSetupActivity.EXTRA_ACTION_TYPE; import static com.android.settings.privatespace.PrivateSpaceSetupActivity.SET_LOCK_ACTION; import static com.android.settings.privatespace.onelock.UseOneLockSettingsFragment.UNIFY_PRIVATE_LOCK_WITH_DEVICE_REQUEST; @@ -197,12 +199,7 @@ public class UseOneLockControllerSwitch extends AbstractPreferenceController .setPositiveButton( R.string.private_space_set_lock_label, (dialog, which) -> { - Intent intent = new Intent(mContext, - PrivateProfileContextHelperActivity.class); - intent.putExtra(EXTRA_ACTION_TYPE, SET_LOCK_ACTION); - ((Activity) mContext).startActivityForResultAsUser(intent, - UNUNIFY_PRIVATE_LOCK_FROM_DEVICE_REQUEST, - /*Options*/ null, mUserHandle); + startSeparateLockSetup(); }) .setNegativeButton(R.string.private_space_cancel_label, (DialogInterface dialog, int which) -> { @@ -216,4 +213,26 @@ public class UseOneLockControllerSwitch extends AbstractPreferenceController }) .show(); } + + private void startSeparateLockSetup() { + if (android.multiuser.Flags.modifyPrivateSpaceSecondaryUnlockSetupFlow()) { + final Bundle extras = new Bundle(); + extras.putInt(Intent.EXTRA_USER_ID, mProfileUserId); + extras.putBoolean(HIDE_INSECURE_OPTIONS, true); + extras.putInt(EXTRA_KEY_CHOOSE_LOCK_SCREEN_TITLE, + R.string.private_space_lock_setup_title); + new SubSettingLauncher(mContext).setDestination(ChooseLockGeneric + .ChooseLockGenericFragment.class.getName()) + .setSourceMetricsCategory(mHost.getMetricsCategory()) + .setArguments(extras) + .setExtras(extras) + .setTransitionType(SettingsTransitionHelper.TransitionType.TRANSITION_SLIDE) + .launch(); + } else { + Intent intent = new Intent(mContext, PrivateProfileContextHelperActivity.class); + intent.putExtra(EXTRA_ACTION_TYPE, SET_LOCK_ACTION); + ((Activity) mContext).startActivityForResultAsUser(intent, + UNUNIFY_PRIVATE_LOCK_FROM_DEVICE_REQUEST, /*Options*/ null, mUserHandle); + } + } }