Example #1
0
 public static NewToAptoide1 newInstace() {
   NewToAptoide1 fragment = new NewToAptoide1();
   Bundle args = new Bundle();
   args.putString("name", "NewToAptoide1");
   fragment.setArguments(args);
   return fragment;
 }
Example #2
0
 public static ArrayList<Fragment> getWizardNewToAptoide() {
   ArrayList<Fragment> wizard = new ArrayList<Fragment>();
   wizard.add(NewToAptoide1.newInstace());
   wizard.add(NewToAptoide2.newInstace());
   wizard.add(NewToAptoide3.newInstace());
   return wizard;
 }