diff --git a/packages/SystemUI/res/values/strings.xml b/packages/SystemUI/res/values/strings.xml index 29f13359da5b2..a4ea5e81878dc 100644 --- a/packages/SystemUI/res/values/strings.xml +++ b/packages/SystemUI/res/values/strings.xml @@ -844,6 +844,10 @@ Clear all Drag here to use split screen + + Swipe up to switch apps + + Drag right to quickly switch apps Split Horizontal diff --git a/packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl b/packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl index 4799f398fb7a2..f13be73e5c919 100644 --- a/packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl +++ b/packages/SystemUI/shared/src/com/android/systemui/shared/recents/ISystemUiProxy.aidl @@ -35,11 +35,6 @@ interface ISystemUiProxy { */ void startScreenPinning(int taskId) = 1; - /** - * Specifies the text to be shown for onboarding the new swipe-up gesture to access recents. - */ - void setRecentsOnboardingText(CharSequence text) = 3; - /** * Enables/disables launcher/overview interaction features {@link InteractionType}. */ diff --git a/packages/SystemUI/src/com/android/systemui/OverviewProxyService.java b/packages/SystemUI/src/com/android/systemui/OverviewProxyService.java index b1020cfb5a846..3443334e833a0 100644 --- a/packages/SystemUI/src/com/android/systemui/OverviewProxyService.java +++ b/packages/SystemUI/src/com/android/systemui/OverviewProxyService.java @@ -78,7 +78,6 @@ public class OverviewProxyService implements CallbackController