有一个按钮可以在我的应用程序内启动其他应用程序,并且我使用intent getpackagename。我设法调用并启动了另一个应用程序,但需要先在手机中安装该应用程序,然后才能启动。还有其他方法可以在不安装应用程序的情况下将其启动,或者似乎无法做到吗?
答案 0 :(得分:1)
您可以使用此解决方案-
Intent intent = getPackageManager().getLaunchIntentForPackage("com.example.myapp");
if(intent.resolveActivity(context.getPackageManager()) != null){ //Open app if installed
startActivity(intent);
}else{//Send to play store to download or instant app solution
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.example.myapp")));
} catch (ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=com.example.myapp")));
}
}
如果@jake如How to launch another application from one application without installing所述,可以用即时应用启动代码替换从Play商店代码下载。