Searched defs:subActions (Results 1 - 7 of 7) sorted by relevance

/frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/
H A DGuidedStepFragmentTest.java280 public void subActions() throws Throwable { method in class:GuidedStepFragmentTest
301 List<GuidedAction> subActions = new ArrayList<GuidedAction>();
302 subActions.add(new GuidedAction.Builder().id(2000).title("item1").build());
303 subActions.add(new GuidedAction.Builder().id(2001).title("item2").build());
304 actions.add(new GuidedAction.Builder().id(1000).subActions(subActions)
384 List<GuidedAction> subActions = new ArrayList<GuidedAction>();
385 subActions.add(new GuidedAction.Builder().id(2000).title("item1").build());
386 actions.add(new GuidedAction.Builder().id(1000).subActions(subActions)
[all...]
H A DGuidedStepSupportFragmentTest.java277 public void subActions() throws Throwable { method in class:GuidedStepSupportFragmentTest
298 List<GuidedAction> subActions = new ArrayList<GuidedAction>();
299 subActions.add(new GuidedAction.Builder().id(2000).title("item1").build());
300 subActions.add(new GuidedAction.Builder().id(2001).title("item2").build());
301 actions.add(new GuidedAction.Builder().id(1000).subActions(subActions)
381 List<GuidedAction> subActions = new ArrayList<GuidedAction>();
382 subActions.add(new GuidedAction.Builder().id(2000).title("item1").build());
383 actions.add(new GuidedAction.Builder().id(1000).subActions(subActions)
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
H A DGuidedStepActivity.java112 String desc, List<GuidedAction> subActions) {
118 .subActions(subActions)
434 List<GuidedAction> subActions = new ArrayList<GuidedAction>();
435 updatePaymentAction(addAction(actions, PAYMENT, "Select Payment", "", subActions));
458 List<GuidedAction> subActions = paymentAction.getSubActions();
459 subActions.clear();
461 addCheckedAction(subActions, -1, sCards.get(i), "",
464 subActions.get(i).setChecked(true);
467 addAction(subActions, NEW_PAYMEN
111 addAction(List<GuidedAction> actions, long id, String title, String desc, List<GuidedAction> subActions) argument
[all...]
H A DGuidedStepSupportActivity.java115 String desc, List<GuidedAction> subActions) {
121 .subActions(subActions)
437 List<GuidedAction> subActions = new ArrayList<GuidedAction>();
438 updatePaymentAction(addAction(actions, PAYMENT, "Select Payment", "", subActions));
461 List<GuidedAction> subActions = paymentAction.getSubActions();
462 subActions.clear();
464 addCheckedAction(subActions, -1, sCards.get(i), "",
467 subActions.get(i).setChecked(true);
470 addAction(subActions, NEW_PAYMEN
114 addAction(List<GuidedAction> actions, long id, String title, String desc, List<GuidedAction> subActions) argument
[all...]
/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
H A DGuidedStepActivity.java112 String desc, List<GuidedAction> subActions) {
118 .subActions(subActions)
434 List<GuidedAction> subActions = new ArrayList<GuidedAction>();
435 updatePaymentAction(addAction(actions, PAYMENT, "Select Payment", "", subActions));
458 List<GuidedAction> subActions = paymentAction.getSubActions();
459 subActions.clear();
461 addCheckedAction(subActions, -1, sCards.get(i), "",
464 subActions.get(i).setChecked(true);
467 addAction(subActions, NEW_PAYMEN
111 addAction(List<GuidedAction> actions, long id, String title, String desc, List<GuidedAction> subActions) argument
[all...]
H A DGuidedStepSupportActivity.java115 String desc, List<GuidedAction> subActions) {
121 .subActions(subActions)
437 List<GuidedAction> subActions = new ArrayList<GuidedAction>();
438 updatePaymentAction(addAction(actions, PAYMENT, "Select Payment", "", subActions));
461 List<GuidedAction> subActions = paymentAction.getSubActions();
462 subActions.clear();
464 addCheckedAction(subActions, -1, sCards.get(i), "",
467 subActions.get(i).setChecked(true);
470 addAction(subActions, NEW_PAYMEN
114 addAction(List<GuidedAction> actions, long id, String title, String desc, List<GuidedAction> subActions) argument
[all...]
/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DGuidedAction.java527 * @param subActions
530 public B subActions(List<GuidedAction> subActions) { argument
531 mSubActions = subActions;

Completed in 143 milliseconds