-5

How can I change the Activity in Android ? I don't want to create a new Activity, I just want to change it.

2 Answers2

1

You can do something as below

Intent myIntent = new Intent(this, TargetAvitivityName.class);
startActivity(myIntent)
Jay Mayu
  • 17,023
  • 32
  • 114
  • 148
0

There are tons of tutorials about this, also on Stackoverflow. Reading the Docs would help too... But here is the Solution you are searching for: On Android, how do you switch activities programmatically?

Community
  • 1
  • 1
Naturjoghurt
  • 541
  • 6
  • 21