응답: Android에서 다른 응용 프로그램에서 활동 시작 방법 응답: Android에서 다른 응용 프로그램에서 활동 시작 방법

1259 단어

답변: Android에서 다른 응용 프로그램에서 활동을 시작하는 방법


2018년 12월 2일
15

설명에 따라 편집
일부 버전에서는 (설명 참조) 발생할 수 있는 이상이 다를 수 있습니다.
따라서 아래의 해결 방안은 약간 수정되었다
Intent launchIntent = null;
try{
   launchIntent = getPackageManager().getLaunchIntentForPackage("applicationId");
} catch (Exception ignored) {}

if(launchIntent == null){
    startActivity(new Intent(Intent.ACTION_VIEW).setData(Uri.parse("https://play.google.com/store/apps/details?id=" + "applicationId")));
} else {
    startActivity(launchIntent);

Open Full Answer

좋은 웹페이지 즐겨찾기