Reputation: 162985
In my android project, I have 2 Activities. How can I launch an Activity from an Activity. I know I can do 'startActivity', but my activity has NOT registered for any Intent, is there anyway I can still launch it from my activity?
Thank you.
Upvotes: 1
Views: 626
Reputation: 579
startActivity(new Intent(this, MyOtherActivity.class));
or
startActivityForResult(intent, requestCode)
Upvotes: 1