I\'m trying to move between one Activity to another based upon some user input.
I\'m trying to use:
String myClass = \"some_user_input.class\" Intent
This is my solution using Class.forName() method:
Class.forName()
String myClass = "foo.class"; Intent i = new Intent(getApplicationContext(), Class.forName(myClass)); startActivity(i);