Searched refs:remoteInput (Results 1 – 9 of 9) sorted by relevance
76 RemoteInput remoteInput = new RemoteInput.Builder(KEY_REPLY) in sendDirectReplyNotification() local84 .addRemoteInput(remoteInput) in sendDirectReplyNotification()97 final Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); in onReceiveDirectReply() local98 if (remoteInput == null) { in onReceiveDirectReply()101 final CharSequence reply = remoteInput.getCharSequence(KEY_REPLY); in onReceiveDirectReply()
166 RemoteInput remoteInput = remoteInputs[0]; in writeReply() local167 if (remoteInput == null) { in writeReply()174 results.putCharSequence(remoteInput.getResultKey(), reply); in writeReply()
137 final Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); in getText() local138 if (remoteInput != null) { in getText()139 final CharSequence extra = remoteInput.getCharSequence(textType); in getText()
910 final RemoteInput remoteInput = new RemoteInput.Builder(Intent.EXTRA_TEXT).setLabel( in addWearableVoiceReplyAction() local914 actionBuilder.addRemoteInput(remoteInput); in addWearableVoiceReplyAction()
377 RemoteInput remoteInput = action.getRemoteInputs()[0];378 if (remoteInput == null) {383 messageDataBundle.putCharSequence(remoteInput.getResultKey(),387 new RemoteInput[]{remoteInput}, resultIntent, messageDataBundle);
64 for (RemoteInput remoteInput : remoteInputs) { in onNotificationPosted()65 sender.send("remote input extras", remoteInput.getExtras()); in onNotificationPosted()
288 for (RemoteInput remoteInput : remoteInputs) { in hasInlineReply()289 if (remoteInput.getAllowFreeFormInput()) { in hasInlineReply()
248 final RemoteInput remoteInput = new RemoteInput.Builder("RI") in sendNotification() local253 .addRemoteInput(remoteInput) in sendNotification()
776 @Nullable RemoteInput remoteInput) { in ConversationAction() argument779 mRemoteInput = remoteInput; in ConversationAction()