Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad73e492 authored by Oli Lan's avatar Oli Lan Committed by Android (Google) Code Review
Browse files

Merge "Change clipboard access notification wording." into sc-dev

parents eba7be78 5571ca14
Loading
Loading
Loading
Loading
+2 −8
Original line number Diff line number Diff line
@@ -952,14 +952,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)