I have a TabActivity. Each tab point to a sub activity. This works great.
Is there any clever way to refresh one of the activity tabs? I just want to \'restart\' th
Here is the solution:
tabHost.setOnTabChangedListener(this); public void onTabChanged(String tabId) { Log.d(LOG_KEY, tabId); LocalActivityManager manager = getLocalActivityManager(); manager.destroyActivity("ID_1", true); manager.startActivity("ID_1", new Intent(this, YourMyActivity.class)); }