Home
last modified time | relevance | path

Searched refs:remoteInputText (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputNotificationRebuilder.java82 CharSequence remoteInputText = entry.remoteInputText; in rebuildForRemoteInputReply() local
83 if (TextUtils.isEmpty(remoteInputText)) { in rebuildForRemoteInputReply()
84 remoteInputText = entry.remoteInputTextWhenReset; in rebuildForRemoteInputReply()
89 remoteInputText, false /* showSpinner */, remoteInputMimeType, in rebuildForRemoteInputReply()
98 CharSequence remoteInputText, boolean showSpinner, String mimeType, Uri uri) { in rebuildWithRemoteInputInserted() argument
103 if (remoteInputText != null || uri != null) { in rebuildWithRemoteInputInserted()
105 ? new RemoteInputHistoryItem(mimeType, uri, remoteInputText) in rebuildWithRemoteInputInserted()
106 : new RemoteInputHistoryItem(remoteInputText); in rebuildWithRemoteInputInserted()
H A DNotificationRemoteInputManager.java317 !TextUtils.equals(entry.remoteInputText, in setUpWithCallback()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarNotificationActivityStarter.java335 CharSequence remoteInputText = null; in handleNotificationClickAfterPanelCollapsed() local
336 if (!TextUtils.isEmpty(entry.remoteInputText)) { in handleNotificationClickAfterPanelCollapsed()
337 remoteInputText = entry.remoteInputText; in handleNotificationClickAfterPanelCollapsed()
339 if (!TextUtils.isEmpty(remoteInputText) in handleNotificationClickAfterPanelCollapsed()
342 remoteInputText.toString()); in handleNotificationClickAfterPanelCollapsed()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputViewController.kt188 entry.remoteInputText = info.originalText
311 entry.remoteInputText = view.text
342 entry.remoteInputText = fullText
H A DRemoteInputView.java430 mEntry.remoteInputText = mEditText.getText(); in onDefocus()
655 mEditText.setText(mEntry.remoteInputText); in focus()
1051 mRemoteInputView.mEntry.remoteInputText = getText(); in defocusIfNeeded()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DNotificationEntry.java129 public CharSequence remoteInputText; field in NotificationEntry