Chocolate Chip Cookie
본문 바로가기
App/Android

인텐트

by Khookie 2021. 9. 21.

 

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);

 

 

 

 

댓글