Class SupportFragmentController<F extends android.support.v4.app.Fragment>

  • Type Parameters:
    F - a class of the fragment which is under control by this class.

    @Deprecated
    public class SupportFragmentController<F extends android.support.v4.app.Fragment>
    extends ComponentController<SupportFragmentController<F>,​F>
    Deprecated.
    FragmentController provides low-level APIs to control fragment's lifecycle.

    Using FragmentController directly from your tests is strongly discouraged. You have to call all the lifecycle callback methods (create, start, ...) in the same manner as the Android framework by yourself otherwise you'll see fidelity issues. Consider using androidx.fragment.app.testing.FragmentScenario instead, which provides higher-level, streamlined APIs to control the lifecycle and it works with instrumentation tests too.

    • Constructor Detail

      • SupportFragmentController

        protected SupportFragmentController​(F fragment,
                                            Class<? extends android.support.v4.app.FragmentActivity> activityClass)
        Deprecated.
      • SupportFragmentController

        protected SupportFragmentController​(F fragment,
                                            Class<? extends android.support.v4.app.FragmentActivity> activityClass,
                                            Intent intent)
        Deprecated.
    • Method Detail

      • of

        public static <F extends android.support.v4.app.Fragment> SupportFragmentController<F> of​(F fragment)
        Deprecated.
      • of

        public static <F extends android.support.v4.app.Fragment> SupportFragmentController<F> of​(F fragment,
                                                                                                  Class<? extends android.support.v4.app.FragmentActivity> activityClass)
        Deprecated.
      • of

        public static <F extends android.support.v4.app.Fragment> SupportFragmentController<F> of​(F fragment,
                                                                                                  Class<? extends android.support.v4.app.FragmentActivity> activityClass,
                                                                                                  Intent intent)
        Deprecated.
      • setupFragment

        public static <F extends android.support.v4.app.Fragment> F setupFragment​(F fragment)
        Deprecated.
        Sets up the given fragment by attaching it to an activity, calling its onCreate() through onResume() lifecycle methods, and then making it visible. Note that the fragment will be added to the view with ID 1.
      • setupFragment

        public static <F extends android.support.v4.app.Fragment> F setupFragment​(F fragment,
                                                                                  Class<? extends android.support.v4.app.FragmentActivity> fragmentActivityClass)
        Deprecated.
        Sets up the given fragment by attaching it to an activity, calling its onCreate() through onResume() lifecycle methods, and then making it visible. Note that the fragment will be added to the view with ID 1.
      • setupFragment

        public static <F extends android.support.v4.app.Fragment> F setupFragment​(F fragment,
                                                                                  Class<? extends android.support.v4.app.FragmentActivity> fragmentActivityClass,
                                                                                  Bundle bundle)
        Deprecated.
        Sets up the given fragment by attaching it to an activity created with the given bundle, calling its onCreate() through onResume() lifecycle methods, and then making it visible. Note that the fragment will be added to the view with ID 1.
      • setupFragment

        public static <F extends android.support.v4.app.Fragment> F setupFragment​(F fragment,
                                                                                  Class<? extends android.support.v4.app.FragmentActivity> fragmentActivityClass,
                                                                                  int containerViewId,
                                                                                  Bundle bundle)
        Deprecated.
        Sets up the given fragment by attaching it to an activity created with the given bundle and container id, calling its onCreate() through onResume() lifecycle methods, and then making it visible.
      • create

        public SupportFragmentController<F> create​(int contentViewId,
                                                   Bundle bundle)
        Deprecated.
        Creates the activity with Bundle and adds the fragment to the view with ID contentViewId.
      • create

        public SupportFragmentController<F> create​(Bundle bundle)
        Deprecated.
        Creates the activity with Bundle and adds the fragment to it. Note that the fragment will be added to the view with ID 1.