Searched defs:RemoteInput (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/app/
H A DRemoteInput.java38 * A {@code RemoteInput} object specifies input to be collected from a user to be passed along with
40 * Always use {@link RemoteInput.Builder} to create instances of this class.
45 * <p>The following example adds a {@code RemoteInput} to a {@link Notification.Action},
55 * <b>.addRemoteInput(new RemoteInput.Builder(KEY_QUICK_REPLY_TEXT)
66 * Bundle results = RemoteInput.getResultsFromIntent(intent);
71 public final class RemoteInput implements Parcelable { class in inherits:Parcelable
109 private RemoteInput(String resultKey, CharSequence label, CharSequence[] choices, method in class:RemoteInput
179 * Builder class for {@link RemoteInput} objects.
190 * Create a builder object for {@link RemoteInput} objects.
281 * @see RemoteInput#getExtra
320 private RemoteInput(Parcel in) { method in class:RemoteInput
[all...]
/frameworks/support/compat/src/main/java/androidx/core/app/
H A DRemoteInput.java35 * Helper for using the {@link android.app.RemoteInput}.
37 public final class RemoteInput { class
38 private static final String TAG = "RemoteInput";
57 RemoteInput(String resultKey, CharSequence label, CharSequence[] choices, method in class:RemoteInput
123 * Builder class for {@link androidx.core.app.RemoteInput} objects.
134 * Create a builder object for {@link androidx.core.app.RemoteInput} objects.
205 * @see RemoteInput#getExtras
225 * {@link androidx.core.app.RemoteInput} object.
227 public RemoteInput build() {
228 return new RemoteInput(
[all...]

Completed in 272 milliseconds