In Android I have some activities, let\'s say A, B, C.
In A, I use this code to open B:
Intent intent = new Intent(this, B.class); startActivity(inte
Either add this to your Activity B and Activity C
Activity B
Activity C
android:noHistory="true"
or Override onBackPressed function to avoid back pressing with a return.
Override
onBackPressed
return
@Override public void onBackPressed() { return; }