I want to create tabs without extending TabActivity. (The reason is that TabActivity cannot handle a custom titlebar as it seems). I have
pu
Before calling tabHost.setup(mLocalActivityManager); you need to add this line.
mlam.dispatchCreate(savedInstanceState); tabHost.setup(mlam );
similarly, you need to add for onResume,
mlam.dispatchResume();
onPause(),
mlam.dispatchPause(isFinishing());