I have a fragment that inflates an xml layout. My requirement is to update the text size on all my views inside my fragment when my Activity is resumed. I tried
In my case,detach and attach work for me.
detach
attach
getSupportFragmentManager() .beginTransaction() .detach(contentFragment) .attach(contentFragment) .commit();