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

/frameworks/support/compat/src/main/java/androidx/core/app/
H A DNotificationCompatJellybean.java48 private static final String KEY_REMOTE_INPUTS = "remoteInputs";
123 RemoteInput[] remoteInputs = null;
127 remoteInputs = fromBundleArray(
134 return new NotificationCompat.Action(icon, title, actionIntent, extras, remoteInputs,
308 RemoteInput[] remoteInputs = new RemoteInput[bundles.length];
310 remoteInputs[i] = fromBundle(bundles[i]);
312 return remoteInputs;
315 private static Bundle[] toBundleArray(RemoteInput[] remoteInputs) { argument
316 if (remoteInputs == null) {
319 Bundle[] bundles = new Bundle[remoteInputs
[all...]
H A DRemoteInput.java313 * @param remoteInputs The remote inputs for which results are being provided
318 * {@code remoteInputs} with values being the result per key.
320 public static void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, argument
323 android.app.RemoteInput.addResultsToIntent(fromCompat(remoteInputs), intent, results);
335 for (RemoteInput input : remoteInputs) {
357 for (RemoteInput remoteInput : remoteInputs) {
H A DNotificationCompat.java3119 RemoteInput[] remoteInputs, RemoteInput[] dataOnlyRemoteInputs,
3126 this.mRemoteInputs = remoteInputs;
3237 RemoteInput[] remoteInputs, boolean allowGeneratedReplies,
3243 mRemoteInputs = remoteInputs == null ? null : new ArrayList<>(
3244 Arrays.asList(remoteInputs));
3963 android.app.RemoteInput[] remoteInputs = RemoteInput.fromCompat(remoteInputCompats);
3964 for (android.app.RemoteInput remoteInput : remoteInputs) {
5049 final RemoteInput[] remoteInputs;
5052 remoteInputs = null;
5054 remoteInputs
3118 Action(int icon, CharSequence title, PendingIntent intent, Bundle extras, RemoteInput[] remoteInputs, RemoteInput[] dataOnlyRemoteInputs, boolean allowGeneratedReplies, @SemanticAction int semanticAction, boolean showsUserInterface) argument
3236 Builder(int icon, CharSequence title, PendingIntent intent, Bundle extras, RemoteInput[] remoteInputs, boolean allowGeneratedReplies, @SemanticAction int semanticAction, boolean showsUserInterface) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputController.java77 RemoteInput[] remoteInputs = action.getRemoteInputs();
78 if (remoteInputs == null) {
81 for (RemoteInput ri : remoteInputs) {
/frameworks/base/core/java/android/app/
H A DRemoteInput.java390 * @param remoteInputs The remote inputs for which results are being provided
395 * {@code remoteInputs} with values being the CharSequence results per key.
397 public static void addResultsToIntent(RemoteInput[] remoteInputs, Intent intent, argument
407 for (RemoteInput remoteInput : remoteInputs) {
H A DNotification.java1461 RemoteInput[] remoteInputs, boolean allowGeneratedReplies,
1470 this.mRemoteInputs = remoteInputs;
1578 RemoteInput[] remoteInputs, boolean allowGeneratedReplies,
1584 if (remoteInputs != null) {
1585 mRemoteInputs = new ArrayList<RemoteInput>(remoteInputs.length);
1586 Collections.addAll(mRemoteInputs, remoteInputs);
4954 RemoteInput[] remoteInputs = action.getRemoteInputs();
4955 if (remoteInputs == null) {
4959 for (RemoteInput r : remoteInputs) {
1460 Action(Icon icon, CharSequence title, PendingIntent intent, Bundle extras, RemoteInput[] remoteInputs, boolean allowGeneratedReplies, @SemanticAction int semanticAction) argument
1577 Builder(Icon icon, CharSequence title, PendingIntent intent, Bundle extras, RemoteInput[] remoteInputs, boolean allowGeneratedReplies, @SemanticAction int semanticAction) argument
/frameworks/support/slices/view/src/main/java/androidx/slice/widget/
H A DRemoteInputView.java196 public void setRemoteInput(RemoteInput[] remoteInputs, RemoteInput remoteInput) { argument
197 mRemoteInputs = remoteInputs;
/frameworks/support/compat/src/androidTest/java/androidx/core/app/
H A DNotificationCompatTest.java929 RemoteInput[] remoteInputs, String expectedResultKey) {
930 assertTrue(remoteInputs != null && remoteInputs.length == 1);
931 assertEquals(expectedResultKey, remoteInputs[0].getResultKey());
928 verifyRemoteInputArrayHasSingleResult( RemoteInput[] remoteInputs, String expectedResultKey) argument
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java270 public void setRemoteInput(RemoteInput[] remoteInputs, RemoteInput remoteInput) { argument
271 mRemoteInputs = remoteInputs;
/frameworks/base/core/java/android/widget/
H A DRemoteViews.java237 public void setRemoteInputs(int viewId, RemoteInput[] remoteInputs) { argument
238 mActions.add(new SetRemoteInputsAction(viewId, remoteInputs));
2099 public SetRemoteInputsAction(int viewId, RemoteInput[] remoteInputs) { argument
2101 this.remoteInputs = remoteInputs;
2106 remoteInputs = parcel.createTypedArray(RemoteInput.CREATOR);
2111 dest.writeTypedArray(remoteInputs, flags);
2119 target.setTagInternal(R.id.remote_input_tag, remoteInputs);
2127 final Parcelable[] remoteInputs; field in class:RemoteViews.SetRemoteInputsAction

Completed in 263 milliseconds