Answers for "how to recreate activity in android from another class"

0

android start new Activity from an activity with a child

val newIntent = Intent(this@Activity1, Activity2::class.java)
newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK)
newIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)

[email protected](newIntent)
Posted by: Guest on March-17-2021

Code answers related to "how to recreate activity in android from another class"

Browse Popular Code Answers by Language