I want to re-create Fragment. After I did something like
fragmentTransaction.detach(someFragment);
fragmentTransaction.attach(someFragment);
fragmentTransaction.commit();
onAttach
is not being called but only onCreateView
, which means that fragment was not-really re-attached.
Please advise how to make full detach/attach cycle. Thank you!