Android应用开发 - 2个屏幕应用

时间:2013-06-25 14:48:34

标签: java android screen

如何在Java中“连接”2个屏幕。当我在第一个屏幕点击按钮然后它打开第二个屏幕?

感谢您的帮助!

1 个答案:

答案 0 :(得分:0)

Intent openSecondScreen = new Intent(FirstScreen.this, SecondScreen.class);
startActivity(openSecondScreen);