Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/tools/EditTextVariations/src/com/android/inputmethod/tools/edittextvariations/
DNotificationUtils.java76 RemoteInput remoteInput = new RemoteInput.Builder(KEY_REPLY) in sendDirectReplyNotification() local
84 .addRemoteInput(remoteInput) in sendDirectReplyNotification()
97 final Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); in onReceiveDirectReply() local
98 if (remoteInput == null) { in onReceiveDirectReply()
101 final CharSequence reply = remoteInput.getCharSequence(KEY_REPLY); in onReceiveDirectReply()
/packages/apps/Car/libs/car-assist-lib/src/com/android/car/assist/payloadhandlers/
DNotificationPayloadHandler.java166 RemoteInput remoteInput = remoteInputs[0]; in writeReply() local
167 if (remoteInput == null) { in writeReply()
174 results.putCharSequence(remoteInput.getResultKey(), reply); in writeReply()
/packages/apps/Car/Notification/src/com/android/car/notification/
DNotificationClickHandlerFactory.java342 RemoteInput remoteInput = action.getRemoteInputs()[0];
343 if (remoteInput == null) {
348 messageDataBundle.putCharSequence(remoteInput.getResultKey(),
352 new RemoteInput[]{remoteInput}, resultIntent, messageDataBundle);
/packages/apps/Messaging/src/com/android/messaging/datamodel/
DNoConfirmationSmsSendService.java137 final Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); in getText() local
138 if (remoteInput != null) { in getText()
139 final CharSequence extra = remoteInput.getCharSequence(textType); in getText()
DBugleNotifications.java910 final RemoteInput remoteInput = new RemoteInput.Builder(Intent.EXTRA_TEXT).setLabel( in addWearableVoiceReplyAction() local
914 actionBuilder.addRemoteInput(remoteInput); in addWearableVoiceReplyAction()
/packages/modules/ExtServices/src/android/ext/services/notification/
DNotificationEntry.java288 for (RemoteInput remoteInput : remoteInputs) { in hasInlineReply()
289 if (remoteInput.getAllowFreeFormInput()) { in hasInlineReply()