Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Java 中“连接”2 个屏幕。当我在第一个屏幕上单击按钮时,它会打开第二个屏幕?
谢谢你的帮助!
Intent openSecondScreen = new Intent(FirstScreen.this, SecondScreen.class); startActivity(openSecondScreen);