Skip to content Skip to sidebar Skip to footer

How To Refresh Tabhost Activity?

I have a TabHost activity as main activity of my app. This TabHost contains 4 activity. How can I refresh this TabHost (or one of my activity which TabHost includes) by clicking on

Solution 1:

startActivity of that tab and have your code of the activity you want to refresh in onResume() method, that should refresh your tab activity. It is working fine in one of my apps.


Post a Comment for "How To Refresh Tabhost Activity?"