Possible Duplicate:
onKeyDown() or onBackPressed()
I don't know what is wrong, but whenever I click on the android mobile back it goes directly to the login screen. Control is not going inside this method. I want to give same functionality to mobile back button which I am providing to my application back button. Here is my code ...
@Override
public void onBackPressed()
{
Intent edit = new Intent(getParent(), CreatePing.class);
TabGroupActivity parentActivity = (TabGroupActivity)getParent();
parentActivity.startChildActivity("My Pings", edit);
}