Android

안드로이드 인텐트(Intent)

주피터0410 2021. 12. 15. 15:33

액티비티끼리 서로 호출하기 위한 통신 장치

Intent intent = new Intent(getApplicationContext(), 호출할Activity.class);
startActivity(intent);

첫번째 인수 : 액티비티 클래스를 구현하는 컨텍스트(context)

두번쨰 인수 : 호출할 액티비티의 클래스