Home
last modified time | relevance | path

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

/frameworks/support/compat/jellybean/android/support/v4/app/
DRemoteInputCompatJellybean.java68 static Bundle toBundle(RemoteInputCompatBase.RemoteInput remoteInput) { in toBundle() argument
70 data.putString(KEY_RESULT_KEY, remoteInput.getResultKey()); in toBundle()
71 data.putCharSequence(KEY_LABEL, remoteInput.getLabel()); in toBundle()
72 data.putCharSequenceArray(KEY_CHOICES, remoteInput.getChoices()); in toBundle()
73 data.putBoolean(KEY_ALLOW_FREE_FORM_INPUT, remoteInput.getAllowFreeFormInput()); in toBundle()
74 data.putBundle(KEY_EXTRAS, remoteInput.getExtras()); in toBundle()
76 Set<String> allowedDataTypes = remoteInput.getAllowedDataTypes(); in toBundle()
152 for (RemoteInputCompatBase.RemoteInput remoteInput : remoteInputs) { in addResultsToIntent()
153 Object result = results.get(remoteInput.getResultKey()); in addResultsToIntent()
155 resultsBundle.putCharSequence(remoteInput.getResultKey(), (CharSequence) result); in addResultsToIntent()
[all …]
/frameworks/support/compat/api21/android/support/v4/app/
DNotificationCompatApi21.java196 RemoteInputCompatBase.RemoteInput remoteInput = uc.getRemoteInput(); in getBundleForUnreadConversation() local
197 if (remoteInput != null) { in getBundleForUnreadConversation()
198 b.putParcelable(KEY_REMOTE_INPUT, fromCompatRemoteInput(remoteInput)); in getBundleForUnreadConversation()
239 android.app.RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT); in getUnreadConversationFromBundle() local
249 remoteInput != null ? toCompatRemoteInput(remoteInput, remoteInputFactory) : null, in getUnreadConversationFromBundle()
266 android.app.RemoteInput remoteInput, in toCompatRemoteInput() argument
268 return factory.build(remoteInput.getResultKey(), in toCompatRemoteInput()
269 remoteInput.getLabel(), in toCompatRemoteInput()
270 remoteInput.getChoices(), in toCompatRemoteInput()
271 remoteInput.getAllowFreeFormInput(), in toCompatRemoteInput()
[all …]
/frameworks/support/compat/java/android/support/v4/app/
DRemoteInput.java300 public static void addDataResultToIntent(RemoteInput remoteInput, Intent intent, in addDataResultToIntent() argument
302 IMPL.addDataResultToIntent(remoteInput, intent, results); in addDataResultToIntent()
312 void addDataResultToIntent(RemoteInput remoteInput, Intent intent, in addDataResultToIntent() argument
336 public void addDataResultToIntent(RemoteInput remoteInput, Intent intent, in addDataResultToIntent() argument
362 public void addDataResultToIntent(RemoteInput remoteInput, Intent intent, in addDataResultToIntent() argument
364 RemoteInputCompatJellybean.addDataResultToIntent(remoteInput, intent, results); in addDataResultToIntent()
387 public void addDataResultToIntent(RemoteInput remoteInput, Intent intent, in addDataResultToIntent() argument
389 RemoteInputCompatApi20.addDataResultToIntent(remoteInput, intent, results); in addDataResultToIntent()
DNotificationCompat.java2741 public Builder addRemoteInput(RemoteInput remoteInput) { in addRemoteInput() argument
2745 mRemoteInputs.add(remoteInput); in addRemoteInput()
4080 UnreadConversation(String[] messages, RemoteInput remoteInput, in UnreadConversation() argument
4084 mRemoteInput = remoteInput; in UnreadConversation()
4153 String[] messages, RemoteInputCompatBase.RemoteInput remoteInput,
4157 messages, (RemoteInput) remoteInput, replyPendingIntent,
4208 PendingIntent pendingIntent, RemoteInput remoteInput) { in setReplyAction() argument
4209 mRemoteInput = remoteInput; in setReplyAction()
/frameworks/base/core/java/android/app/
DRemoteInput.java373 for (RemoteInput remoteInput : remoteInputs) { in addResultsToIntent()
374 Object result = results.get(remoteInput.getResultKey()); in addResultsToIntent()
376 resultsBundle.putCharSequence(remoteInput.getResultKey(), (CharSequence) result); in addResultsToIntent()
395 public static void addDataResultToIntent(RemoteInput remoteInput, Intent intent, in addDataResultToIntent() argument
412 resultsBundle.putString(remoteInput.getResultKey(), uri.toString()); in addDataResultToIntent()
/frameworks/support/compat/api20/android/support/v4/app/
DNotificationCompatApi20.java151 for (RemoteInput remoteInput : RemoteInputCompatApi20.fromCompat( in addAction()
153 actionBuilder.addRemoteInput(remoteInput); in addAction()
201 for (RemoteInput remoteInput : remoteInputs) { in getActionFromActionCompat()
202 actionBuilder.addRemoteInput(remoteInput); in getActionFromActionCompat()
DRemoteInputCompatApi20.java126 public static void addDataResultToIntent(RemoteInputCompatBase.RemoteInput remoteInput, in addDataResultToIntent() argument
143 resultsBundle.putString(remoteInput.getResultKey(), uri.toString()); in addDataResultToIntent()
/frameworks/support/compat/ics/android/support/v4/app/
DNotificationCompatBase.java60 RemoteInputCompatBase.RemoteInput remoteInput, in build() argument
/frameworks/support/compat/api24/android/support/v4/app/
DNotificationCompatApi24.java171 for (RemoteInput remoteInput : RemoteInputCompatApi20.fromCompat( in addAction()
173 actionBuilder.addRemoteInput(remoteInput); in addAction()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java256 public void setRemoteInput(RemoteInput[] remoteInputs, RemoteInput remoteInput) { in setRemoteInput() argument
258 mRemoteInput = remoteInput; in setRemoteInput()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DStatusBar.java6787 final boolean remoteInput = Settings.Secure.getIntForUser(mContext.getContentResolver(),
6794 setLockScreenAllowRemoteInput(remoteInput && remoteInputDpm);