Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DRemoteInputNotificationRebuilder.java94 CharSequence remoteInputText = entry.remoteInputText; in rebuildForRemoteInputReply() local
95 if (TextUtils.isEmpty(remoteInputText)) { in rebuildForRemoteInputReply()
96 remoteInputText = entry.remoteInputTextWhenReset; in rebuildForRemoteInputReply()
101 remoteInputText, false /* showSpinner */, remoteInputMimeType, in rebuildForRemoteInputReply()
110 CharSequence remoteInputText, boolean showSpinner, String mimeType, Uri uri) { in rebuildWithRemoteInputInserted() argument
121 if (remoteInputText != null || uri != null) { in rebuildWithRemoteInputInserted()
123 ? new RemoteInputHistoryItem(mimeType, uri, remoteInputText) in rebuildWithRemoteInputInserted()
124 : new RemoteInputHistoryItem(remoteInputText); in rebuildWithRemoteInputInserted()
142 if (remoteInputText != null || uri != null) { in rebuildWithRemoteInputInserted()
144 ? new RemoteInputHistoryItem(mimeType, uri, remoteInputText) in rebuildWithRemoteInputInserted()
[all …]
DNotificationRemoteInputManager.java346 !TextUtils.equals(entry.remoteInputText, in setUpWithCallback()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarter.java383 CharSequence remoteInputText = null; in handleNotificationClickAfterPanelCollapsed() local
384 if (!TextUtils.isEmpty(entry.remoteInputText)) { in handleNotificationClickAfterPanelCollapsed()
385 remoteInputText = entry.remoteInputText; in handleNotificationClickAfterPanelCollapsed()
387 if (!TextUtils.isEmpty(remoteInputText) in handleNotificationClickAfterPanelCollapsed()
390 remoteInputText.toString()); in handleNotificationClickAfterPanelCollapsed()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputViewController.kt168 entry.remoteInputText = info.originalText in onSendRemoteInput()
292 entry.remoteInputText = view.text in onSendRemoteInput()
323 entry.remoteInputText = fullText in onSendRemoteInput()
DRemoteInputView.java423 mEntry.remoteInputText = mEditText.getText(); in onDefocus()
626 mEditText.setText(mEntry.remoteInputText); in focus()
1000 mRemoteInputView.mEntry.remoteInputText = getText(); in defocusIfNeeded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java135 public CharSequence remoteInputText; field in NotificationEntry