Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationRemoteInputManager.java327 !TextUtils.equals(entry.remoteInputText, in setUpWithCallback()
531 CharSequence remoteInputText, boolean showSpinner) { in rebuildNotificationWithRemoteInput() argument
536 if (remoteInputText != null) { in rebuildNotificationWithRemoteInput()
546 newHistory[0] = String.valueOf(remoteInputText); in rebuildNotificationWithRemoteInput()
618 CharSequence remoteInputText = entry.remoteInputText; in setShouldManageLifetime() local
619 if (TextUtils.isEmpty(remoteInputText)) { in setShouldManageLifetime()
620 remoteInputText = entry.remoteInputTextWhenReset; in setShouldManageLifetime()
623 remoteInputText, false /* showSpinner */); in setShouldManageLifetime()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarter.java309 CharSequence remoteInputText = null; in handleNotificationClickAfterPanelCollapsed() local
310 if (!TextUtils.isEmpty(entry.remoteInputText)) { in handleNotificationClickAfterPanelCollapsed()
311 remoteInputText = entry.remoteInputText; in handleNotificationClickAfterPanelCollapsed()
313 if (!TextUtils.isEmpty(remoteInputText) && !controller.isSpinning(entry.key)) { in handleNotificationClickAfterPanelCollapsed()
315 remoteInputText.toString()); in handleNotificationClickAfterPanelCollapsed()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java159 mEntry.remoteInputText = mEditText.getText(); in sendRemoteInput()
221 mEntry.remoteInputText = mEditText.getText(); in onDefocus()
295 mEntry.remoteInputText = editedSuggestionInfo.originalText; in setRemoteInput()
325 mEditText.setText(mEntry.remoteInputText); in focus()
535 mRemoteInputView.mEntry.remoteInputText = getText(); in defocusIfNeeded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java103 public CharSequence remoteInputText; field in NotificationEntry