Class TestFragment.FragmentB

java.lang.Object
icyllis.modernui.fragment.Fragment
icyllis.modernui.TestFragment.FragmentB
All Implemented Interfaces:
LifecycleOwner, ViewModelStoreOwner, View.OnCreateContextMenuListener
Enclosing class:
TestFragment

public static class TestFragment.FragmentB extends Fragment
  • Constructor Details

    • FragmentB

      public FragmentB()
  • Method Details

    • onCreateView

      @Nullable public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable DataSet savedInstanceState)
      Description copied from class: Fragment
      Called to have the fragment instantiate its user interface view. This is optional, and non-graphical fragments can return null. This will be called between Fragment.onCreate(DataSet) and Fragment.onViewCreated(View, DataSet).

      It is recommended to only inflate the layout in this method and move logic that operates on the returned View to Fragment.onViewCreated(View, DataSet).

      If you return a View from here, you will later be called in Fragment.onDestroyView() when the view is being released.

      Overrides:
      onCreateView in class Fragment
      Parameters:
      inflater - The LayoutInflater object that can be used to inflate any views in the fragment
      container - If non-null, this is the parent view that the fragment's UI should be attached to. The fragment should not add the view itself, but this can be used to generate the LayoutParams of the view.
      savedInstanceState - If non-null, this fragment is being re-constructed from a previous saved state as given here.
      Returns:
      Return the View for the fragment's UI, or null.
    • onDestroy

      public void onDestroy()
      Description copied from class: Fragment
      Called when the fragment is no longer in use. This is called after Fragment.onStop() and before Fragment.onDetach().
      Overrides:
      onDestroy in class Fragment