我是 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代码的不同部分吗?
谢谢编辑:感谢您的快速回复,我会去阅读所有内容