Answers for "android studio close activity from another activity"

1

android startActivity and close all the others

this.startActivity(Intent(this, HomeActivity::class.java))
this.finishAffinity()
Posted by: Guest on March-15-2021
0

how to stop activity from another activity

onCreate()
{
    FirstActivity.fa.finish();
}
Posted by: Guest on April-10-2020

Code answers related to "android studio close activity from another activity"

Browse Popular Code Answers by Language