我正在应用程序的第一个屏幕上启动一个新活动,当有人按下按钮时。
出于某种原因,当我尝试启动StoryBoard时,似乎只是重新加载了MainScreen。
我的应用中的第一个活动称为MainScreen。我正在尝试启动StoryBoard,我正确地做到了吗?
Intent myIntent = new Intent(MainScreen.this, StoryBoard.class);
myIntent.putExtra("sportName", sportName);
myIntent.putExtra("stories", storiesAsArray);
myIntent.setClass(this, StoryBoard.class);
startActivity(myIntent);
答案 0 :(得分:1)
试
Intent myIntent = new Intent(MainScreen.this, StoryBoard.class);
myIntent.putExtra("sportName", sportName);
myIntent.putExtra("stories", storiesAsArray);
MainScreen.this.startActivity(myIntent);