[안드로이드] Intent(1) - 인텐트(Intent) 개요
[안드로이드] Intent(1) - 인텐트(Intent) 개요
1. Activity 간 통신 - Intent 개요
: 애플리케이션 내부와 애플리케이션 간의 메시지를 전달 할 때 사용된다.
: 안드로이드 기기 내의 모든 애플리케이션 컴포넌트 간의 상호작용을 할 수 있다.
▪ 명시적 인텐트(Explicit intent)
: 호출하거나 메시지를 보낼 대상 컴포넌트 이름을 지정하는 방식
//명시적 인텐트 예
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
startActivity(intent);
▪ 암시적 인텐트(Implicit intent)
: 명시적 인텐트와 달리 액션, 카테고리, 데이터와 같은 특징을 포함하고 있는 방식
//암시적 인텐트 예
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:010-1234-5678"));
staryActivity(intent);
[안드로이드] Intent(1) - 인텐트(Intent) 개요
'구성 > 인텐트(Intent)' 카테고리의 다른 글
[Android] 안드로이드 - 인텐트(Intent)를 활용한 액티비티(Activity)간 데이터 전달하기 (0) | 2021.12.02 |
---|---|
[Android] 안드로이드 - 인텐트(Intent)를 활용한 액티비티(Activity) 생성 및 실행하기 (0) | 2021.12.02 |
[Android] 안드로이드 - 어플리케이션 4대 구성요소 (Component) (0) | 2021.11.30 |
[안드로이드] intent를 이용한 화면전환 (0) | 2018.01.17 |
[안드로이드] Intent(4) - 인텐트 플래그를 이용한 Activity 스택 관리 (0) | 2018.01.17 |
[안드로이드] Intent(3) - 암시적 인텐트(Implicit intent) (0) | 2018.01.17 |
[안드로이드] Intent(2) - 명시적 인텐트(Explicit intent) (0) | 2018.01.17 |
[Android] Intent 활용 예시 (0) | 2018.01.17 |