If it’s guaranteed that onResume() is called after onCreateView() every time, then it results in us calling updateUI() twice every time our fragment is created.
Is it guaranteed? Is there ever a time that a fragment’s view could be recreated without onResume() being called afterwards?
Thanks!