1. 암시적 인텐트 (다른 앱으로 전환)
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:010293888"));
//암시적 인텐트(외부앱으로)
startActivity(intent);
전화
Intent intent = new Intent(Intent.ACTION_SENDTO,Uri.parse("smsto:0103033048"));
startActivity(intent);
메시지
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.sixshop.com/youngplaza/home/"));
startActivity(intent);
웹 이동
2. 명시적 인텐트 (나의 앱 내부로 전환)
(1)응답을 받지 않는 경우
Intent intentSNS = new Intent(getApplicationContext(),snsActivity.class); //두번째 인자를 목적지 액티비티 이름으로 바꿔주기
intentSNS.putExtra("이름","데이터값"); //보낼 데이터가 있는경우 사용
startActivity(intentSNS);
'App > Android' 카테고리의 다른 글
[공유]구글 맵 API 발급 (0) | 2021.09.22 |
---|---|
안드로이드 아이콘 파일 만들기 (0) | 2021.09.21 |
안드로이드 프래그먼트 다루기 Fragment (0) | 2021.09.21 |
안드로이드 support 라이브러리 추가하는법 (0) | 2021.09.20 |
안드로이드 네이게이션 drawer 액티비티 사용법을 정리해보자 (0) | 2021.09.18 |
댓글