Following situation: I have TabActivity with e.g. three tabs, TabA, TabB, TabC.
There are a button in activity (Act_C_1) of TabC. So if the user clicks on that butto
Just add this for all tabs:
yourTabHost.getChildAt(0).setOnClickListener(new OnClickListener() { public void onClick(View v) { getTabHost().setCurrentTab(0); } });