/developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/ |
MessageReplyReceiver.java | 26 import android.support.v4.app.RemoteInput; 65 * Note that you should call {@code RemoteInput#getResultsFromIntent(intent)} to process 66 * the RemoteInput. 69 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); 70 if (remoteInput != null) { 71 return remoteInput.getCharSequence(
|
MessagingService.java | 31 import android.support.v4.app.RemoteInput; 95 // Build a RemoteInput for receiving voice input in a Car Notification or text input on 97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_REMOTE_REPLY) 110 .addRemoteInput(remoteInput) 119 .setReplyAction(replyIntent, remoteInput);
|
/developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/ |
MessageReplyReceiver.java | 26 import android.support.v4.app.RemoteInput; 65 * Note that you should call {@code RemoteInput#getResultsFromIntent(intent)} to process 66 * the RemoteInput. 69 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); 70 if (remoteInput != null) { 71 return remoteInput.getCharSequence(
|
MessagingService.java | 31 import android.support.v4.app.RemoteInput; 95 // Build a RemoteInput for receiving voice input in a Car Notification or text input on 97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_REMOTE_REPLY) 110 .addRemoteInput(remoteInput) 119 .setReplyAction(replyIntent, remoteInput);
|
/development/samples/browseable/MessagingService/src/com.example.android.messagingservice/ |
MessageReplyReceiver.java | 26 import android.support.v4.app.RemoteInput; 65 * Note that you should call {@code RemoteInput#getResultsFromIntent(intent)} to process 66 * the RemoteInput. 69 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); 70 if (remoteInput != null) { 71 return remoteInput.getCharSequence(
|
MessagingService.java | 31 import android.support.v4.app.RemoteInput; 95 // Build a RemoteInput for receiving voice input in a Car Notification or text input on 97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_REMOTE_REPLY) 110 .addRemoteInput(remoteInput) 119 .setReplyAction(replyIntent, remoteInput);
|
/platform_testing/tests/jank/notificationsgenerator_wear/src/com/google/android/wearable/support/ |
CustomPostNotificationReceiver.java | 27 import android.support.v4.app.RemoteInput; 53 RemoteInput remoteInput = new RemoteInput.Builder(REMOTE_INPUT_KEY) 59 .addRemoteInput(remoteInput)
|
/developers/build/prebuilts/gradle/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/ |
ActionsPresets.java | 21 import android.support.v4.app.RemoteInput; 90 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY) 98 .addRemoteInput(remoteInput) 112 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY) 122 .addRemoteInput(remoteInput) 144 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY [all...] |
/developers/samples/android/wearable/wear/Notifications/Application/src/main/java/com/example/android/support/wearable/notifications/ |
ActionsPresets.java | 21 import android.support.v4.app.RemoteInput; 90 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY) 98 .addRemoteInput(remoteInput) 112 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY) 122 .addRemoteInput(remoteInput) 144 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY [all...] |
/development/samples/browseable/Notifications/Application/src/com.example.android.support.wearable.notifications/ |
ActionsPresets.java | 21 import android.support.v4.app.RemoteInput; 90 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY) 98 .addRemoteInput(remoteInput) 112 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY) 122 .addRemoteInput(remoteInput) 144 RemoteInput remoteInput = new RemoteInput.Builder(NotificationUtil.EXTRA_REPLY [all...] |
/frameworks/base/core/java/android/app/ |
RemoteInput.java | 27 * A {@code RemoteInput} object specifies input to be collected from a user to be passed along with 29 * Always use {@link RemoteInput.Builder} to create instances of this class. 34 * <p>The following example adds a {@code RemoteInput} to a {@link Notification.Action}, 44 * <b>.addRemoteInput(new RemoteInput.Builder(KEY_QUICK_REPLY_TEXT) 55 * Bundle results = RemoteInput.getResultsFromIntent(intent); 60 public final class RemoteInput implements Parcelable { 62 public static final String RESULTS_CLIP_LABEL = "android.remoteinput.results"; 65 public static final String EXTRA_RESULTS_DATA = "android.remoteinput.resultsData"; 79 private RemoteInput(String resultKey, CharSequence label, CharSequence[] choices, 128 * Builder class for {@link RemoteInput} objects [all...] |
Notification.java | 802 * with the most recent inputs that have been sent through a {@link RemoteInput} of this [all...] |
/packages/apps/Messaging/src/com/android/messaging/datamodel/ |
NoConfirmationSmsSendService.java | 23 import android.support.v4.app.RemoteInput; 137 final Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); 138 if (remoteInput != null) { 139 final CharSequence extra = remoteInput.getCharSequence(textType);
|
BugleNotifications.java | 38 import android.support.v4.app.RemoteInput; [all...] |
/cts/hostsidetests/net/app2/src/com/android/cts/net/hostside/app2/ |
MyBroadcastReceiver.java | 45 import android.app.RemoteInput; 287 final RemoteInput remoteInput = new RemoteInput.Builder("RI") 292 .addRemoteInput(remoteInput)
|
/frameworks/support/compat/api21/android/support/v4/app/ |
NotificationCompatApi21.java | 167 RemoteInputCompatBase.RemoteInput remoteInput = uc.getRemoteInput(); 168 if (remoteInput != null) { 169 b.putParcelable(KEY_REMOTE_INPUT, fromCompatRemoteInput(remoteInput)); 180 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) { 210 android.app.RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT); 220 remoteInput != null ? toCompatRemoteInput(remoteInput, remoteInputFactory) : null, 226 private static android.app.RemoteInput fromCompatRemoteInput [all...] |
/frameworks/support/compat/jellybean/android/support/v4/app/ |
RemoteInputCompatJellybean.java | 26 public static final String RESULTS_CLIP_LABEL = "android.remoteinput.results"; 29 public static final String EXTRA_RESULTS_DATA = "android.remoteinput.resultsData"; 37 static RemoteInputCompatBase.RemoteInput fromBundle(Bundle data, 38 RemoteInputCompatBase.RemoteInput.Factory factory) { 46 static Bundle toBundle(RemoteInputCompatBase.RemoteInput remoteInput) { 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()) [all...] |
/frameworks/support/compat/tests/java/android/support/v4/app/ |
NotificationCompatWearableExtenderTest.java | 81 RemoteInput.Builder remoteInput = new RemoteInput.Builder("result_key1") 84 remoteInput.getExtras().putString("remoteinput_string", "test"); 87 .addRemoteInput(remoteInput.build()) 128 android.app.RemoteInput.Builder remoteInput = new android.app.RemoteInput.Builder( 132 remoteInput.getExtras().putString("remoteinput_string", "test"); 135 .addRemoteInput(remoteInput.build() [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/compose/ |
ComposeActivity.java | 51 import android.support.v4.app.RemoteInput; 626 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); 628 if (remoteInput != null) { 630 CharSequence input = remoteInput.getCharSequence( [all...] |
/prebuilts/sdk/current/support/v4/ |
android-support-v4.jar | |
/prebuilts/sdk/current/support/v13/ |
android-support-v13.jar | |
/prebuilts/sdk/23/ |
android.jar | |
/prebuilts/sdk/24/ |
android.jar | |
/prebuilts/sdk/current/ |
android.jar | |
/prebuilts/sdk/system_current/ |
android.jar | |