I am starting a new activity from the first screen in my application, when someone presses a button.
For some reason, when I try to start StoryBoard, it appears that MainScreen is simply being reloaded.
The first activity in my app is called MainScreen. I am trying to start StoryBoard, am I doing it correctly?
Intent myIntent = new Intent(MainScreen.this, StoryBoard.class);
myIntent.putExtra("sportName", sportName);
myIntent.putExtra("stories", storiesAsArray);
myIntent.setClass(this, StoryBoard.class);
startActivity(myIntent);
setClass()line is superfluous, as you already provided that info in the constructor. – CommonsWare Apr 23 '12 at 23:11