Home | History | Annotate | Download | only in settings

Lines Matching defs:args

441             switchToFragment(DashboardSummary.class.getName(), null /* args */, false, false,
603 Bundle args = superIntent.getExtras();
604 if (args != null) {
605 args = new Bundle(args);
607 args = new Bundle();
609 args.putParcelable("intent", superIntent);
610 modIntent.putExtra(EXTRA_SHOW_FRAGMENT_ARGUMENTS, args);
644 * @param args Any desired arguments to supply to the fragment.
655 public void startPreferencePanel(Fragment caller, String fragmentClass, Bundle args,
666 Utils.startWithFragment(this, fragmentClass, args, resultTo, resultRequestCode,
677 * @param args Any desired arguments to supply to the fragment.
683 Bundle args, int titleRes, CharSequence titleText, UserHandle userHandle) {
695 startPreferencePanel(caller, fragmentClass, args, titleRes, titleText, null, 0);
706 Utils.startWithFragmentAsUser(this, fragmentClass, args, titleRes, title,
747 private Fragment switchToFragment(String fragmentName, Bundle args, boolean validate,
753 Fragment f = Fragment.instantiate(this, fragmentName, args);