HomeSort by relevance Sort by last modified time
    Searched refs:remoteInput (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/support/v4/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...]
  /developers/build/prebuilts/gradle/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageReplyReceiver.java 23 import android.support.v4.app.RemoteInput;
48 * Note that you should call {@code RemoteInput#getResultsFromIntent(intent)} to process
49 * the RemoteInput.
52 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
53 if (remoteInput != null) {
54 return remoteInput.getCharSequence(MessagingService.EXTRA_VOICE_REPLY);
MessagingService.java 31 import android.support.v4.app.RemoteInput;
96 // Build a RemoteInput for receiving voice input in a Car Notification
97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
113 .setReplyAction(replyIntent, remoteInput);
  /developers/samples/android/notification/MessagingService/Application/src/main/java/com/example/android/messagingservice/
MessageReplyReceiver.java 23 import android.support.v4.app.RemoteInput;
48 * Note that you should call {@code RemoteInput#getResultsFromIntent(intent)} to process
49 * the RemoteInput.
52 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
53 if (remoteInput != null) {
54 return remoteInput.getCharSequence(MessagingService.EXTRA_VOICE_REPLY);
MessagingService.java 31 import android.support.v4.app.RemoteInput;
96 // Build a RemoteInput for receiving voice input in a Car Notification
97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
113 .setReplyAction(replyIntent, remoteInput);
  /development/samples/browseable/MessagingService/src/com.example.android.messagingservice/
MessageReplyReceiver.java 23 import android.support.v4.app.RemoteInput;
48 * Note that you should call {@code RemoteInput#getResultsFromIntent(intent)} to process
49 * the RemoteInput.
52 Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
53 if (remoteInput != null) {
54 return remoteInput.getCharSequence(MessagingService.EXTRA_VOICE_REPLY);
MessagingService.java 31 import android.support.v4.app.RemoteInput;
96 // Build a RemoteInput for receiving voice input in a Car Notification
97 RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY)
113 .setReplyAction(replyIntent, 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/support/v4/api21/android/support/v4/app/
NotificationCompatApi21.java 145 RemoteInputCompatBase.RemoteInput remoteInput = uc.getRemoteInput();
146 if (remoteInput != null) {
147 b.putParcelable(KEY_REMOTE_INPUT, fromCompatRemoteInput(remoteInput));
158 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) {
188 android.app.RemoteInput remoteInput = b.getParcelable(KEY_REMOTE_INPUT);
198 remoteInput != null ? toCompatRemoteInput(remoteInput, remoteInputFactory) : null,
204 private static android.app.RemoteInput fromCompatRemoteInput
    [all...]
  /frameworks/support/v4/donut/android/support/v4/app/
NotificationCompatBase.java 32 public abstract RemoteInputCompatBase.RemoteInput[] getRemoteInputs();
36 Bundle extras, RemoteInputCompatBase.RemoteInput[] remoteInputs);
45 abstract RemoteInputCompatBase.RemoteInput getRemoteInput();
52 RemoteInputCompatBase.RemoteInput remoteInput,
  /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     [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...]
  /frameworks/support/tests/java/android/support/v4/app/
NotificationCompatWearableExtenderTest.java 79 RemoteInput.Builder remoteInput = new RemoteInput.Builder("result_key1")
82 remoteInput.getExtras().putString("remoteinput_string", "test");
85 .addRemoteInput(remoteInput.build())
126 android.app.RemoteInput.Builder remoteInput = new android.app.RemoteInput.Builder(
130 remoteInput.getExtras().putString("remoteinput_string", "test");
133 .addRemoteInput(remoteInput.build()
    [all...]
  /frameworks/support/v4/api20/android/support/v4/app/
NotificationCompatApi20.java 21 import android.app.RemoteInput;
105 for (RemoteInput remoteInput : RemoteInputCompatApi20.fromCompat(
107 actionBuilder.addRemoteInput(remoteInput);
118 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) {
124 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) {
125 RemoteInputCompatBase.RemoteInput[] remoteInputs = RemoteInputCompatApi20.toCompat(
136 RemoteInputCompatBase.RemoteInput[] remoteInputCompats = actionCompat.getRemoteInputs();
138 RemoteInput[] remoteInputs = RemoteInputCompatApi20.fromCompat(remoteInputCompats);
139 for (RemoteInput remoteInput : remoteInputs)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
RemoteInputView.java 24 import android.app.RemoteInput;
47 private static final String TAG = "RemoteInput";
52 private RemoteInput mRemoteInput;
94 RemoteInput.addResultsToIntent(mAction.getRemoteInputs(), fillInIntent,
108 Notification.Action action, RemoteInput remoteInput) {
114 v.mRemoteInput = remoteInput;
  /frameworks/support/v4/java/android/support/v4/app/
NotificationCompat.java 461 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory);
547 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) {
616 RemoteInput.FACTORY);
623 parcelables, Action.FACTORY, RemoteInput.FACTORY);
680 RemoteInput.FACTORY);
721 RemoteInput.FACTORY);
728 parcelables, Action.FACTORY, RemoteInput.FACTORY);
786 RemoteInputCompatBase.RemoteInput.Factory remoteInputFactory) {
    [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/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 5660 milliseconds

1 2