Searched refs:remoteInputText (Results 1 – 4 of 4) sorted by relevance
343 !TextUtils.equals(entry.remoteInputText, in setUpWithCallback()569 CharSequence remoteInputText, boolean showSpinner, String mimeType, Uri uri) { in rebuildNotificationWithRemoteInput() argument574 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() local673 if (TextUtils.isEmpty(remoteInputText)) { in setShouldManageLifetime()674 remoteInputText = entry.remoteInputTextWhenReset; in setShouldManageLifetime()679 remoteInputText, false /* showSpinner */, remoteInputMimeType, in setShouldManageLifetime()
164 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()
353 CharSequence remoteInputText = null; in handleNotificationClickAfterPanelCollapsed() local354 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()
130 public CharSequence remoteInputText; field in NotificationEntry