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.java343 !TextUtils.equals(entry.remoteInputText, in setUpWithCallback()
569 CharSequence remoteInputText, boolean showSpinner, String mimeType, Uri uri) { in rebuildNotificationWithRemoteInput() argument
574 if (remoteInputText != null || uri != null) { in rebuildNotificationWithRemoteInput()
588 newItem = new RemoteInputHistoryItem(mimeType, uri, remoteInputText); in rebuildNotificationWithRemoteInput()
590 newItem = new RemoteInputHistoryItem(remoteInputText); in rebuildNotificationWithRemoteInput()
672 CharSequence remoteInputText = entry.remoteInputText; in setShouldManageLifetime() local
673 if (TextUtils.isEmpty(remoteInputText)) { in setShouldManageLifetime()
674 remoteInputText = entry.remoteInputTextWhenReset; in setShouldManageLifetime()
679 remoteInputText, false /* showSpinner */, remoteInputMimeType, in setShouldManageLifetime()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java164 mEntry.remoteInputText = mEditText.getText(); in prepareRemoteInputFromText()
184 mEntry.remoteInputText = mContext.getString(R.string.remote_input_image_insertion_text); in prepareRemoteInputFromData()
258 mEntry.remoteInputText = mEditText.getText(); in onDefocus()
332 mEntry.remoteInputText = editedSuggestionInfo.originalText; in setRemoteInput()
362 mEditText.setText(mEntry.remoteInputText); in focus()
573 mRemoteInputView.mEntry.remoteInputText = getText(); in defocusIfNeeded()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBarNotificationActivityStarter.java353 CharSequence remoteInputText = null; in handleNotificationClickAfterPanelCollapsed() local
354 if (!TextUtils.isEmpty(entry.remoteInputText)) { in handleNotificationClickAfterPanelCollapsed()
355 remoteInputText = entry.remoteInputText; in handleNotificationClickAfterPanelCollapsed()
357 if (!TextUtils.isEmpty(remoteInputText) && !controller.isSpinning(notificationKey)) { in handleNotificationClickAfterPanelCollapsed()
359 remoteInputText.toString()); in handleNotificationClickAfterPanelCollapsed()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotificationEntry.java130 public CharSequence remoteInputText; field in NotificationEntry