Loading packages/SystemUI/res/values/strings.xml +2 −0 Original line number Diff line number Diff line Loading @@ -200,6 +200,8 @@ <!-- Informs the user that a screenshot is being saved. [CHAR LIMIT=50] --> <string name="screenshot_saving_title">Saving screenshot\u2026</string> <!-- Informs the user that a screenshot is being saved. [CHAR LIMIT=50] --> <string name="screenshot_saving_work_profile_title">Saving screenshot to work profile\u2026</string> <!-- Notification title displayed when a screenshot is saved to the Gallery. [CHAR LIMIT=50] --> <string name="screenshot_saved_title">Screenshot saved</string> <!-- Notification title displayed when we fail to take a screenshot. [CHAR LIMIT=50] --> Loading packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java +9 −2 Original line number Diff line number Diff line Loading @@ -579,9 +579,16 @@ public class ScreenshotController { private void saveScreenshot(Bitmap screenshot, Consumer<Uri> finisher, Rect screenRect, Insets screenInsets, ComponentName topComponent, boolean showFlash, UserHandle owner) { withWindowAttached(() -> withWindowAttached(() -> { if (mFlags.isEnabled(SCREENSHOT_WORK_PROFILE_POLICY) && mUserManager.isManagedProfile(owner.getIdentifier())) { mScreenshotView.announceForAccessibility(mContext.getResources().getString( R.string.screenshot_saving_work_profile_title)); } else { mScreenshotView.announceForAccessibility( mContext.getResources().getString(R.string.screenshot_saving_title))); mContext.getResources().getString(R.string.screenshot_saving_title)); } }); mScreenshotView.reset(); Loading Loading
packages/SystemUI/res/values/strings.xml +2 −0 Original line number Diff line number Diff line Loading @@ -200,6 +200,8 @@ <!-- Informs the user that a screenshot is being saved. [CHAR LIMIT=50] --> <string name="screenshot_saving_title">Saving screenshot\u2026</string> <!-- Informs the user that a screenshot is being saved. [CHAR LIMIT=50] --> <string name="screenshot_saving_work_profile_title">Saving screenshot to work profile\u2026</string> <!-- Notification title displayed when a screenshot is saved to the Gallery. [CHAR LIMIT=50] --> <string name="screenshot_saved_title">Screenshot saved</string> <!-- Notification title displayed when we fail to take a screenshot. [CHAR LIMIT=50] --> Loading
packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotController.java +9 −2 Original line number Diff line number Diff line Loading @@ -579,9 +579,16 @@ public class ScreenshotController { private void saveScreenshot(Bitmap screenshot, Consumer<Uri> finisher, Rect screenRect, Insets screenInsets, ComponentName topComponent, boolean showFlash, UserHandle owner) { withWindowAttached(() -> withWindowAttached(() -> { if (mFlags.isEnabled(SCREENSHOT_WORK_PROFILE_POLICY) && mUserManager.isManagedProfile(owner.getIdentifier())) { mScreenshotView.announceForAccessibility(mContext.getResources().getString( R.string.screenshot_saving_work_profile_title)); } else { mScreenshotView.announceForAccessibility( mContext.getResources().getString(R.string.screenshot_saving_title))); mContext.getResources().getString(R.string.screenshot_saving_title)); } }); mScreenshotView.reset(); Loading