Hi,
In my android application, I start another activity using 'startActivity'. Is there anyway for me to kill that activity I started?
Thank you.
Hi,
In my android application, I start another activity using 'startActivity'. Is there anyway for me to kill that activity I started?
Thank you.
You can stop the other activity by calling Activity.finish(). Alternatively, you can use Activity.finishActivity() to finish an activity started by startActivityForResult().