I am trying to understand the FragmentMananger better.
I "inflate" my fragment in a FrameLayout, what works fine.
var fragmentTag = typeof(MyFragment).Name;
myFragment = new MyFragment();
FragmentManager.BeginTransaction()
.Add(Resource.Id.FrameLayout, myFragment, fragmentTag)
.Commit();
But now the question is, at what moment can i find my fragment via the TagSearch. Because after the BeginTransaction()
FragmentManager.FindFragmentByTag<MyFragment>(typeof(MyFragment).Name
is still null