Answers for "android 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

public static Activity fa;
onCreate()
{
    fa = this;
}
Posted by: Guest on April-10-2020

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

Browse Popular Code Answers by Language