Change clipboard access notification wording.

In accordance with UX review feedback, this changes the wording of
the clipboard access notifications to "<App> pasted from clipboard".

Bug: 179469804
Test: Build & flash, copy and paste and check wording
Change-Id: Iad74f405c493561e4bda7e74a300eafe16d5e1ad
This commit is contained in:
Oli Lan
2021-04-13 17:54:51 +01:00
parent 5ebb9672f2
commit 5571ca14ac

View File

@@ -945,14 +945,8 @@ public class ClipboardService extends SystemService {
try {
CharSequence callingAppLabel = mPm.getApplicationLabel(
mPm.getApplicationInfoAsUser(callingPackage, 0, userId));
String message;
if (isText(clipboard.primaryClip)) {
message = getContext().getString(
R.string.pasted_text, callingAppLabel);
} else {
message = getContext().getString(
R.string.pasted_content, callingAppLabel);
}
String message =
getContext().getString(R.string.pasted_from_clipboard, callingAppLabel);
Slog.i(TAG, message);
Toast.makeText(
getContext(), UiThread.get().getLooper(), message, Toast.LENGTH_SHORT)