FragmentOnAttachListener

public interface FragmentOnAttachListener


Listener for receiving a callback immediately following onAttach. This can be used to perform any additional setup / provide any dependencies that the Fragment may need prior to child fragments being attached or the Fragment going through onCreate.

Summary

Public methods

abstract void
@MainThread
onAttachFragment(
    @NonNull FragmentManager fragmentManager,
    @NonNull Fragment fragment
)

Called after the fragment has been attached to its host.

Public methods

onAttachFragment

Added in 1.3.0
@MainThread
abstract void onAttachFragment(
    @NonNull FragmentManager fragmentManager,
    @NonNull Fragment fragment
)

Called after the fragment has been attached to its host. This is called immediately after onAttach and before onAttach has been called on any child fragments.

Parameters
@NonNull FragmentManager fragmentManager

FragmentManager the fragment is now attached to. This will be the same FragmentManager that is returned by getParentFragmentManager.

@NonNull Fragment fragment

Fragment that just received a callback to onAttach