将用户发送到应用程序。如果应用程序不存在发送到 playstore

Sending user to App. If App not exist send to playstore

我使用此代码将用户转到另一个应用程序。如果用户 phone 上不存在该应用程序,我不希望用户被发送到 Playstore。我正在寻找例子,但我没有找到任何东西。

// Launch My App one after clicking the button1
public void launchAppOne(View view) {
    Intent launchAppOne= getPackageManager().getLaunchIntentForPackage("com.app.android.myapp1");
    startActivity(launchAppOne);
}
// Launch My A after clicking the button2
public void launchAppTwo(View view) {
    Intent launchAppTwo = getPackageManager().getLaunchIntentForPackage("com.app.android.myapp2");
    startActivity(launchAppTwo);
}

您可以使用此代码。它会尝试启动该应用程序,如果它不存在,则会打开该应用程序的 Playstore 页面。

String packageName = "org.mozilla.firefox";
Intent intent= getPackageManager().getLaunchIntentForPackage(packageName);
if (intent != null){
    startActivity(intent);
}else{
    try {
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + packageName)));
    }catch (android.content.ActivityNotFoundException anfe) {
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + packageName)));
    }
}