- containerViewId
- Identifier of the container whose fragment(s) are to be replaced.
- fragment
- The new fragment to place in the container.
- tag
- Optional tag name for the fragment, to later retrieve the fragment with FragmentManager.FindFragmentByTag(string).
Documentation for this section has not yet been entered.
Replace an existing fragment that was added to a container. This is essentially the same as calling FragmentTransaction.Remove(Fragment) for all currently added fragments that were added with the same containerViewId and then FragmentTransaction.Add(int, Android.App.Fragment, Android.App.Fragment) with the same arguments given here.