I want to add the back key in my application so I added this
onCreate(){
getActionBar().setDisplayHomeAsUpEnabled(true);
}
And this
if(id == android.R.id.home){
this.finish();
Intent intent = new Intent(getApplicationContext(),MainActivity.class);
startActivity(intent);
}
It works fine when i press the back button from the App But when I press physical back button key it kill the application