mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
42 lines
2.3 KiB
Diff
42 lines
2.3 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Adrian Roos <roosa@google.com>
|
||
|
Date: Thu, 24 Sep 2020 15:30:46 +0200
|
||
|
Subject: [PATCH] IMMS: Make IMMS PendingIntents immutable
|
||
|
|
||
|
Fixes: 154913391
|
||
|
Test: n/a
|
||
|
Change-Id: I34a95732ef3e7c20d6549b57230c11f0c3db04d6
|
||
|
Merged-In: I34a95732ef3e7c20d6549b57230c11f0c3db04d6
|
||
|
(cherry picked from commit d4b625994f7664666ac7b53bf6a7d79a6459b3f1)
|
||
|
(cherry picked from commit 6842f03c9d2f128785df5ce2bd02c61f35226554)
|
||
|
(cherry picked from commit 2b859826165bddb11f17b217d097253c442f6045)
|
||
|
Merged-In: I34a95732ef3e7c20d6549b57230c11f0c3db04d6
|
||
|
---
|
||
|
.../java/com/android/server/InputMethodManagerService.java | 6 ++++--
|
||
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
||
|
|
||
|
diff --git a/services/core/java/com/android/server/InputMethodManagerService.java b/services/core/java/com/android/server/InputMethodManagerService.java
|
||
|
index 6ae495a37632..6685ea942f55 100644
|
||
|
--- a/services/core/java/com/android/server/InputMethodManagerService.java
|
||
|
+++ b/services/core/java/com/android/server/InputMethodManagerService.java
|
||
|
@@ -914,7 +914,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
|
||
|
.setColor(com.android.internal.R.color.system_notification_accent_color);
|
||
|
|
||
|
Intent intent = new Intent(Settings.ACTION_SHOW_INPUT_METHOD_PICKER);
|
||
|
- mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent, 0);
|
||
|
+ mImeSwitchPendingIntent = PendingIntent.getBroadcast(mContext, 0, intent,
|
||
|
+ PendingIntent.FLAG_IMMUTABLE);
|
||
|
|
||
|
mShowOngoingImeSwitcherForPhones = false;
|
||
|
|
||
|
@@ -1507,7 +1508,8 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
|
||
|
mCurIntent.putExtra(Intent.EXTRA_CLIENT_LABEL,
|
||
|
com.android.internal.R.string.input_method_binding_label);
|
||
|
mCurIntent.putExtra(Intent.EXTRA_CLIENT_INTENT, PendingIntent.getActivity(
|
||
|
- mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS), 0));
|
||
|
+ mContext, 0, new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS),
|
||
|
+ PendingIntent.FLAG_IMMUTABLE));
|
||
|
if (bindCurrentInputMethodService(mCurIntent, this, Context.BIND_AUTO_CREATE
|
||
|
| Context.BIND_NOT_VISIBLE | Context.BIND_NOT_FOREGROUND
|
||
|
| Context.BIND_SHOWING_UI)) {
|