I'm struggling with the problem that the .onWindowFocusChanged() doesn't get called in my custom Activity class. My setup:
Two tabs (containing Activity_1 and Activity_2) in a TabHost, where the 2nd tab is selected by default:
tabHost.setCurrentTab(currentTabIndex);
In both Activities, I added the onWindowFocusChanged() override (because I need to preform calculations after the layout is done drawing):
@Override
public void onWindowFocusChanged(boolean hasFocus)
{
super.onWindowFocusChanged(hasFocus);
}
The problem: when the 2nd tab is selected by default, and I click the 1st tab, the onWindowFocusChanged() never gets called within Activity_1 (associated with the 1st tab). Both Activities extend the normal Activity class.
Any clue on how to fix this would be greatly appreciated!
onWindowFocusChangedis called in the first tab, but not the second tab. If the second activity is (later) paused and resumed,onWindowFocusChangedis called later. – Qwertie Jul 3 '12 at 23:52