Android活动无法启动

时间:2012-04-23 23:08:47

标签: android android-intent android-activity

我正在应用程序的第一个屏幕上启动一个新活动,当有人按下按钮时。

出于某种原因,当我尝试启动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);

1 个答案:

答案 0 :(得分:1)

Intent myIntent = new Intent(MainScreen.this, StoryBoard.class);
myIntent.putExtra("sportName", sportName);
myIntent.putExtra("stories", storiesAsArray);
MainScreen.this.startActivity(myIntent);