I have two fragments, Fragment A and Fragment B. Fragment A contains 4 tabs as shown below:
Tab 3 has recycler view, from which user will select an option. Now user will go to Fragment B, and does something. When he is done, the call will again be back to fragment A and now Tab 4 will be highlighted and data in 4th tab will be loaded.
So far, I am able to go back to fragment A. But from there, I am not able switch to tab 4 and load data. Upon checking I found that, when callback returned to fragment A, that was still not visible. Hence tab was not switched. How can I accomplish this?