I have an Activity (Main) which shows tabs like this:
Main
private void initTabs(){ mTabHost = getTabHost(); // The activity TabHost Intent inte
Override public void onBackPressed() in your activity and handle the back button click yourself. Calling super.onBackPressed(); will affect the standard behaviour of back button press (also exit your app)
public void onBackPressed()
super.onBackPressed();