[Android] 다른 앱 열기 - Intent

원준·2023년 7월 20일

Android Studio

목록 보기
28/40

내부 핸드폰에서 연락처 앱 연결

// 연락처 선택하는 액티비티 띄우기
public void selectContact(){
    // TODO: 2023-07-18 연락처
    Intent intent = new Intent(Intent.ACTION_PICK);
    intent.setType(ContactsContract.Contacts.CONTENT_TYPE);

    startActivity(intent);
}

내부 핸드폰에서 웹 연결

void openWebPage(String url){
    // TODO: 2023-07-18 웹브라우저.
    Uri uri = Uri.parse(url);

    Intent intent = new Intent(Intent.ACTION_VIEW, uri);

    startActivity(intent);
}

내부 핸드폰 SMS 앱 연결

// TODO: 2023-07-18 SMS앱 열기
void composeSMS(String phone){
    Uri uri = Uri.parse("smsto:" + phone);
    Intent intent = new Intent(Intent.ACTION_VIEW, uri);
    startActivity(intent);
}

내부 핸드폰 이메일 앱 연결

// TODO: 2023-07-18 이메일
void composeEmail(String[] address, String subject){
    Uri uri = Uri.parse("mailto:");
    Intent intent = new Intent(Intent.ACTION_SENDTO);
    intent.setData(uri);
    intent.putExtra(Intent.EXTRA_EMAIL, address);
    intent.putExtra(Intent.EXTRA_SUBJECT, subject);
    startActivity(intent);

}
profile
공부해보자

1개의 댓글

comment-user-thumbnail
2023년 7월 20일

유익한 글 잘 봤습니다, 감사합니다.

답글 달기