HomeSort by relevance Sort by last modified time
    Searched full:actionfragment (Results 1 - 6 of 6) sorted by null

  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/old/
ActionFragment.java 30 public class ActionFragment extends ScrollAdapterFragment implements ActionAdapter.Listener,
35 public static ActionFragment newInstance(ArrayList<Action> actions) {
39 public static ActionFragment newInstance(ArrayList<Action> actions, String name) {
40 ActionFragment fragment = new ActionFragment();
45 public static ActionFragment newInstance(ArrayList<Action> actions, int index) {
46 ActionFragment fragment = new ActionFragment();
51 public static ActionFragment newInstance(ArrayList<Action> actions, String name, int index) {
52 ActionFragment fragment = new ActionFragment()
    [all...]
DialogFragment.java 183 protected void setContentAndActionFragments(Fragment contentFragment, Fragment actionFragment) {
184 setContentAndActionFragments(contentFragment, actionFragment, true);
193 protected void setContentAndActionFragments(Fragment contentFragment, Fragment actionFragment,
196 ft = addActionFragmentToTransaction(actionFragment, ft, addToBackStack,
236 if (fragment instanceof ActionFragment) {
237 if (!((ActionFragment) fragment).hasListener()) {
238 ((ActionFragment) fragment).setListener(this);
DialogActivity.java 201 // set ContentFragment and ActionFragment using bundle extras.
215 setActionFragment(ActionFragment.newInstance(actions));
352 protected void setContentAndActionFragments(Fragment contentFragment, Fragment actionFragment) {
353 getDialogFragment().setContentAndActionFragments(contentFragment, actionFragment);
362 protected void setContentAndActionFragments(Fragment contentFragment, Fragment actionFragment,
365 contentFragment, actionFragment, addToBackStack);
BaseDialogFragment.java 105 // position. Otherwise, we perform a simpler transition in which the ActionFragment
174 // Fade in and slide in the ActionFragment from the end.
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/form/
MultiPagedForm.java 21 import com.android.tv.settings.dialog.old.ActionFragment;
290 * Override this to provide a custom ActionFragment for displaying a form
293 * @param formPage the page the ActionFragment is for.
294 * @param actions the actions the ActionFragment should display.
297 * @return an ActionFragment displaying the given actions.
299 protected ActionFragment getActionFragment(FormPage formPage, ArrayList<Action> actions,
301 ActionFragment actionFragment = ActionFragment.newInstance(actions);
306 // actionFragment.setSelection(indexOfSelection)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingDialog.java 46 import com.android.tv.settings.dialog.old.ActionFragment;
279 final Fragment actionFragment = ActionFragment.newInstance(actions);
283 setContentAndActionFragments(contentFragment, actionFragment);

Completed in 183 milliseconds