How to start new activity on button click

后端 未结 24 1715
傲寒
傲寒 2020-11-21 05:54

In an Android application, how do you start a new activity (GUI) when a button in another activity is clicked, and how do you pass data between these two activities?

24条回答
  •  Happy的楠姐
    2020-11-21 06:26

        Intent in = new Intent(getApplicationContext(),SecondaryScreen.class);    
        startActivity(in);
    
        This is an explicit intent to start secondscreen activity.
    

提交回复
热议问题