2013-06-25 167 views
-3

如何在Java中「連接」2個屏幕。當我點擊第一個屏幕上的按鈕,然後打開第二個屏幕?Android應用程序開發-2屏幕應用程序

感謝您的幫助!

+0

查找到意圖 –

+4

這是_exactly_他們在開發者文檔用同樣的例子:http://developer.android.com/training/basics/firstapp/starting-activity.html – dmon

+0

好,感謝我」我會看看它 –

回答

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