Loading packages/SystemUI/res/layout/global_screenshot_static.xml +1 −1 Original line number Diff line number Diff line Loading @@ -94,7 +94,7 @@ android:layout_height="wrap_content" android:layout_gravity="center" android:elevation="@dimen/screenshot_preview_elevation" android:contentDescription="@string/screenshot_edit_label" android:contentDescription="@string/screenshot_edit_description" android:scaleType="fitEnd" android:background="@drawable/screenshot_preview_background" android:adjustViewBounds="true" Loading packages/SystemUI/res/values/strings.xml +2 −0 Original line number Diff line number Diff line Loading @@ -241,6 +241,8 @@ <string name="screenshot_edit_label">Edit</string> <!-- Content description indicating that tapping the element will allow editing the screenshot [CHAR LIMIT=NONE] --> <string name="screenshot_edit_description">Edit screenshot</string> <!-- Content description indicating that tapping the element will allow sharing the screenshot [CHAR LIMIT=NONE] --> <string name="screenshot_share_description">Share screenshot</string> <!-- Label for UI element which allows the user to capture additional off-screen content in a screenshot. [CHAR LIMIT=30] --> <string name="screenshot_scroll_label">Capture more</string> <!-- Content description indicating that tapping a button will dismiss the screenshots UI [CHAR LIMIT=NONE] --> Loading packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotView.java +2 −2 Original line number Diff line number Diff line Loading @@ -621,7 +621,7 @@ public class ScreenshotView extends FrameLayout implements ArrayList<ScreenshotActionChip> chips = new ArrayList<>(); mShareChip.setContentDescription(mContext.getString(com.android.internal.R.string.share)); mShareChip.setContentDescription(mContext.getString(R.string.screenshot_share_description)); mShareChip.setIcon(Icon.createWithResource(mContext, R.drawable.ic_screenshot_share), true); mShareChip.setOnClickListener(v -> { mShareChip.setIsPending(true); Loading @@ -633,7 +633,7 @@ public class ScreenshotView extends FrameLayout implements }); chips.add(mShareChip); mEditChip.setContentDescription(mContext.getString(R.string.screenshot_edit_label)); mEditChip.setContentDescription(mContext.getString(R.string.screenshot_edit_description)); mEditChip.setIcon(Icon.createWithResource(mContext, R.drawable.ic_screenshot_edit), true); mEditChip.setOnClickListener(v -> { mEditChip.setIsPending(true); Loading Loading
packages/SystemUI/res/layout/global_screenshot_static.xml +1 −1 Original line number Diff line number Diff line Loading @@ -94,7 +94,7 @@ android:layout_height="wrap_content" android:layout_gravity="center" android:elevation="@dimen/screenshot_preview_elevation" android:contentDescription="@string/screenshot_edit_label" android:contentDescription="@string/screenshot_edit_description" android:scaleType="fitEnd" android:background="@drawable/screenshot_preview_background" android:adjustViewBounds="true" Loading
packages/SystemUI/res/values/strings.xml +2 −0 Original line number Diff line number Diff line Loading @@ -241,6 +241,8 @@ <string name="screenshot_edit_label">Edit</string> <!-- Content description indicating that tapping the element will allow editing the screenshot [CHAR LIMIT=NONE] --> <string name="screenshot_edit_description">Edit screenshot</string> <!-- Content description indicating that tapping the element will allow sharing the screenshot [CHAR LIMIT=NONE] --> <string name="screenshot_share_description">Share screenshot</string> <!-- Label for UI element which allows the user to capture additional off-screen content in a screenshot. [CHAR LIMIT=30] --> <string name="screenshot_scroll_label">Capture more</string> <!-- Content description indicating that tapping a button will dismiss the screenshots UI [CHAR LIMIT=NONE] --> Loading
packages/SystemUI/src/com/android/systemui/screenshot/ScreenshotView.java +2 −2 Original line number Diff line number Diff line Loading @@ -621,7 +621,7 @@ public class ScreenshotView extends FrameLayout implements ArrayList<ScreenshotActionChip> chips = new ArrayList<>(); mShareChip.setContentDescription(mContext.getString(com.android.internal.R.string.share)); mShareChip.setContentDescription(mContext.getString(R.string.screenshot_share_description)); mShareChip.setIcon(Icon.createWithResource(mContext, R.drawable.ic_screenshot_share), true); mShareChip.setOnClickListener(v -> { mShareChip.setIsPending(true); Loading @@ -633,7 +633,7 @@ public class ScreenshotView extends FrameLayout implements }); chips.add(mShareChip); mEditChip.setContentDescription(mContext.getString(R.string.screenshot_edit_label)); mEditChip.setContentDescription(mContext.getString(R.string.screenshot_edit_description)); mEditChip.setIcon(Icon.createWithResource(mContext, R.drawable.ic_screenshot_edit), true); mEditChip.setOnClickListener(v -> { mEditChip.setIsPending(true); Loading