응답: Android에서 다른 응용 프로그램에서 활동 시작 방법 응답: Android에서 다른 응용 프로그램에서 활동 시작 방법
답변: 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
Reference
이 문제에 관하여(응답: Android에서 다른 응용 프로그램에서 활동 시작 방법 응답: Android에서 다른 응용 프로그램에서 활동 시작 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/mayank1513/answer-how-to-launch-an-activity-from-another-application-in-android-3j60
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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);
Reference
이 문제에 관하여(응답: Android에서 다른 응용 프로그램에서 활동 시작 방법 응답: Android에서 다른 응용 프로그램에서 활동 시작 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/mayank1513/answer-how-to-launch-an-activity-from-another-application-in-android-3j60텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)