MainActivity Box where Intent = Activity passes information Intent class → This is the same as creating a normal object
Intent intent = new Intent(getApplication(), DetailScreen.class); startActivity(intent);
SubActivty onCreate = When Activity is first created
Receive the transitioned screen protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.detail_screen); }
Recommended Posts