Searched refs:remoteInput (Results 1 - 10 of 10) sorted by relevance

/frameworks/support/compat/jellybean/android/support/v4/app/
H A DRemoteInputCompatJellybean.java46 static Bundle toBundle(RemoteInputCompatBase.RemoteInput remoteInput) { argument
48 data.putString(KEY_RESULT_KEY, remoteInput.getResultKey());
49 data.putCharSequence(KEY_LABEL, remoteInput.getLabel());
50 data.putCharSequenceArray(KEY_CHOICES, remoteInput.getChoices());
51 data.putBoolean(KEY_ALLOW_FREE_FORM_INPUT, remoteInput.getAllowFreeFormInput());
52 data.putBundle(KEY_EXTRAS, remoteInput.getExtras());
97 for (RemoteInputCompatBase.RemoteInput remoteInput : remoteInputs) {
98 Object result = results.get(remoteInput.getResultKey());
100 resultsBundle.putCharSequence(remoteInput.getResultKey(), (CharSequence) result);
/frameworks/support/compat/api21/android/support/v4/app/
H A DNotificationCompatApi21.java167 RemoteInputCompatBase.RemoteInput remoteInput = uc.getRemoteInput();
168 if (remoteInput != null) {
169 b.putParcelable(KEY_REMOTE_INPUT, fromCompatRemoteInput(remoteInput));
210 android.app.RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT);
220 remoteInput != null ? toCompatRemoteInput(remoteInput, remoteInputFactory) : null,
237 android.app.RemoteInput remoteInput,
239 return factory.build(remoteInput.getResultKey(),
240 remoteInput.getLabel(),
241 remoteInput
236 toCompatRemoteInput( android.app.RemoteInput remoteInput, RemoteInputCompatBase.RemoteInput.Factory factory) argument
[all...]
/frameworks/base/core/java/android/app/
H A DRemoteInput.java275 for (RemoteInput remoteInput : remoteInputs) {
276 Object result = results.get(remoteInput.getResultKey());
278 resultsBundle.putCharSequence(remoteInput.getResultKey(), (CharSequence) result);
H A DNotification.java1183 * @param remoteInput a {@link RemoteInput} to add to the action
1186 public Builder addRemoteInput(RemoteInput remoteInput) { argument
1190 mRemoteInputs.add(remoteInput);
6668 UnreadConversation(String[] messages, RemoteInput remoteInput, argument
6672 mRemoteInput = remoteInput;
6785 RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT);
6793 remoteInput,
6838 * @param remoteInput The remote input parcelable which will carry the reply.
6845 PendingIntent pendingIntent, RemoteInput remoteInput) {
6846 mRemoteInput = remoteInput;
6844 setReplyAction( PendingIntent pendingIntent, RemoteInput remoteInput) argument
[all...]
/frameworks/support/compat/api20/android/support/v4/app/
H A DNotificationCompatApi20.java116 for (RemoteInput remoteInput : RemoteInputCompatApi20.fromCompat(
118 actionBuilder.addRemoteInput(remoteInput);
158 for (RemoteInput remoteInput : remoteInputs) {
159 actionBuilder.addRemoteInput(remoteInput);
/frameworks/support/compat/gingerbread/android/support/v4/app/
H A DNotificationCompatBase.java60 RemoteInputCompatBase.RemoteInput remoteInput,
59 build(String[] messages, RemoteInputCompatBase.RemoteInput remoteInput, PendingIntent replyPendingIntent, PendingIntent readPendingIntent, String[] participants, long latestTimestamp) argument
/frameworks/support/compat/api24/android/support/v4/app/
H A DNotificationCompatApi24.java117 for (RemoteInput remoteInput : RemoteInputCompatApi20.fromCompat(
119 actionBuilder.addRemoteInput(remoteInput);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java248 public void setRemoteInput(RemoteInput[] remoteInputs, RemoteInput remoteInput) { argument
250 mRemoteInput = remoteInput;
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationCompat.java2554 * @param remoteInput a {@link RemoteInput} to add to the action
2557 public Builder addRemoteInput(RemoteInput remoteInput) { argument
2561 mRemoteInputs.add(remoteInput);
3881 UnreadConversation(String[] messages, RemoteInput remoteInput, argument
3885 mRemoteInput = remoteInput;
3954 String[] messages, RemoteInputCompatBase.RemoteInput remoteInput,
3958 messages, (RemoteInput) remoteInput, replyPendingIntent,
4002 * @param remoteInput The remote input parcelable which will carry the reply.
4009 PendingIntent pendingIntent, RemoteInput remoteInput) {
4010 mRemoteInput = remoteInput;
4008 setReplyAction( PendingIntent pendingIntent, RemoteInput remoteInput) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java2342 final boolean remoteInput = Settings.Secure.getIntForUser(mContext.getContentResolver(),
2349 setLockScreenAllowRemoteInput(remoteInput && remoteInputDpm);

Completed in 616 milliseconds