0

我是 android 开发的新手,我对活动感到困惑(甚至不确定它们是否被称为活动大声笑)我将如何从一个内部开始另一个活动?

public void work(View v) {
     //does quite a bit of stuff in here
     //then goes back to csend() to check if this needs to be repeated
}

public void csend(View view) {  
     if (i  < x){   
         //does a little bit of stuff here
     work(); //i need to make this run the other code   
     }
}

另外,(查看视图)是什么意思,有人可以给我一个教程的链接,该教程解释了android代码的不同部分吗?

谢谢编辑:感谢您的快速回复,我会去阅读所有内容

4

2 回答 2

3
Intent showContent = new Intent(this, ActivityName.class);
startActivity(showContent);

http://www.androidcompetencycenter.com/2009/03/tutorial-how-to-start-a-new-activity/

于 2012-07-12T14:41:04.920 回答
0

你也可以使用,

startActivity(new Intent(YourClassName.this, SecondActivity.class));
于 2012-07-12T14:45:13.230 回答