/frameworks/support/v4/jellybean/android/support/v4/app/ |
D | RemoteInputCompatJellybean.java | 46 static Bundle toBundle(RemoteInputCompatBase.RemoteInput remoteInput) { in toBundle() argument 48 data.putString(KEY_RESULT_KEY, remoteInput.getResultKey()); in toBundle() 49 data.putCharSequence(KEY_LABEL, remoteInput.getLabel()); in toBundle() 50 data.putCharSequenceArray(KEY_CHOICES, remoteInput.getChoices()); in toBundle() 51 data.putBoolean(KEY_ALLOW_FREE_FORM_INPUT, remoteInput.getAllowFreeFormInput()); in toBundle() 52 data.putBundle(KEY_EXTRAS, remoteInput.getExtras()); in toBundle() 97 for (RemoteInputCompatBase.RemoteInput remoteInput : remoteInputs) { in addResultsToIntent() 98 Object result = results.get(remoteInput.getResultKey()); in addResultsToIntent() 100 resultsBundle.putCharSequence(remoteInput.getResultKey(), (CharSequence) result); in addResultsToIntent()
|
/frameworks/support/v4/api21/android/support/v4/app/ |
D | NotificationCompatApi21.java | 144 RemoteInputCompatBase.RemoteInput remoteInput = uc.getRemoteInput(); in getBundleForUnreadConversation() local 145 if (remoteInput != null) { in getBundleForUnreadConversation() 146 b.putParcelable(KEY_REMOTE_INPUT, fromCompatRemoteInput(remoteInput)); in getBundleForUnreadConversation() 187 android.app.RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT); in getUnreadConversationFromBundle() local 197 remoteInput != null ? toCompatRemoteInput(remoteInput, remoteInputFactory) : null, in getUnreadConversationFromBundle() 214 android.app.RemoteInput remoteInput, in toCompatRemoteInput() argument 216 return factory.build(remoteInput.getResultKey(), in toCompatRemoteInput() 217 remoteInput.getLabel(), in toCompatRemoteInput() 218 remoteInput.getChoices(), in toCompatRemoteInput() 219 remoteInput.getAllowFreeFormInput(), in toCompatRemoteInput() [all …]
|
/frameworks/support/tests/java/android/support/v4/app/ |
D | NotificationCompatWearableExtenderTest.java | 79 RemoteInput.Builder remoteInput = new RemoteInput.Builder("result_key1") in testRealReadCompatValue() local 82 remoteInput.getExtras().putString("remoteinput_string", "test"); in testRealReadCompatValue() 85 .addRemoteInput(remoteInput.build()) in testRealReadCompatValue() 126 android.app.RemoteInput.Builder remoteInput = new android.app.RemoteInput.Builder( in testCompatReadRealValue() local 130 remoteInput.getExtras().putString("remoteinput_string", "test"); in testCompatReadRealValue() 133 .addRemoteInput(remoteInput.build()) in testCompatReadRealValue()
|
/frameworks/base/core/java/android/app/ |
D | RemoteInput.java | 275 for (RemoteInput remoteInput : remoteInputs) { in addResultsToIntent() 276 Object result = results.get(remoteInput.getResultKey()); in addResultsToIntent() 278 resultsBundle.putCharSequence(remoteInput.getResultKey(), (CharSequence) result); in addResultsToIntent()
|
D | Notification.java | 1020 public Builder addRemoteInput(RemoteInput remoteInput) { in addRemoteInput() argument 1024 mRemoteInputs.add(remoteInput); in addRemoteInput()
|
/frameworks/support/v4/api20/android/support/v4/app/ |
D | NotificationCompatApi20.java | 104 for (RemoteInput remoteInput : RemoteInputCompatApi20.fromCompat( in addAction() 106 actionBuilder.addRemoteInput(remoteInput); in addAction() 138 for (RemoteInput remoteInput : remoteInputs) { in getActionFromActionCompat() 139 actionBuilder.addRemoteInput(remoteInput); in getActionFromActionCompat()
|
/frameworks/base/docs/html/training/wearables/notifications/ |
D | voice-input.jd | 58 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY) 96 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY) 122 .addRemoteInput(remoteInput) 170 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); 171 if (remoteInput != null) { 172 return remoteInput.getCharSequence(EXTRA_VOICE_REPLY);
|
/frameworks/support/v4/donut/android/support/v4/app/ |
D | NotificationCompatBase.java | 49 RemoteInputCompatBase.RemoteInput remoteInput, in build() argument
|
/frameworks/support/v4/java/android/support/v4/app/ |
D | NotificationCompat.java | 1901 public Builder addRemoteInput(RemoteInput remoteInput) { in addRemoteInput() argument 1905 mRemoteInputs.add(remoteInput); in addRemoteInput() 3049 UnreadConversation(String[] messages, RemoteInput remoteInput, in UnreadConversation() argument 3053 mRemoteInput = remoteInput; in UnreadConversation() 3123 String[] messages, RemoteInputCompatBase.RemoteInput remoteInput, 3127 messages, (RemoteInput) remoteInput, replyPendingIntent, 3178 PendingIntent pendingIntent, RemoteInput remoteInput) { in setReplyAction() argument 3179 mRemoteInput = remoteInput; in setReplyAction()
|
/frameworks/base/docs/html/training/auto/messaging/ |
D | index.jd | 261 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY) 270 .setReplyAction(replyPendingIntent, remoteInput); 527 Bundle remoteInput = 529 if (remoteInput != null) { 530 return remoteInput.getCharSequence("extra_voice_reply");
|