finish() , "". , . , finish() Activity, Activity.isFinishing().
:
Check to see whether this activity is in the process of finishing, either because you
called finish() on it or someone else has requested that it finished.
, :
Log.d("t20", "First here");
startActivity(new Intent(this, AnotherActivity.class));
finish();
if (!isFinishing()) {
Log.d("t20", "Then Here");
}