diff options
author | Jeff DeCew <jeffdq@google.com> | 2021-06-18 15:30:25 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2021-06-18 15:30:25 +0000 |
commit | 6d2dfdfc00051d9bc80b10ff5bcf69eab67f9bc2 (patch) | |
tree | 67a32e0bbdde363b133ae761941e26e4384f8ff7 | |
parent | c6d4d4c127e0bf1fd4e7d66590a2538a3e973f36 (diff) | |
parent | 18c79c12c510d12f36a1614fe85814e1fa26f536 (diff) |
Merge "Convert CharSequence toString for the fallback Remote Input History view." into sc-dev
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/policy/RemoteInputView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/policy/RemoteInputView.java b/packages/SystemUI/src/com/android/systemui/statusbar/policy/RemoteInputView.java index efeeac669491..e6c4e82cec7b 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/policy/RemoteInputView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/policy/RemoteInputView.java @@ -336,7 +336,7 @@ public class RemoteInputView extends LinearLayout implements View.OnClickListene RemoteInput.addResultsToIntent(mRemoteInputs, fillInIntent, results); - mEntry.remoteInputText = mEditText.getText(); + mEntry.remoteInputText = mEditText.getText().toString(); // TODO(b/188646667): store attachment to entry mEntry.remoteInputUri = null; mEntry.remoteInputMimeType = null; |