英文:
I want to know the code to goto next activity when I press a button
问题
我是 Android Studio 的初学者。我想要知道在我按下按钮时如何跳转到下一个界面的代码。你能给我展示一个例子吗?
英文:
I am a beginner in android studio. I want to know the code to go to the next activity when I press a button. Could you please show me an example?
答案1
得分: 1
button = (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(this, NewActivity.class);
startActivity(intent);
}
});
英文:
Basic code would be:
button = (Button) findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(this, NewActivity.class);
startActivity(intent);
}
});
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论