如果确定一个应用程序是否存在,如果不去玩店去玩、是否存在、应用程序

2023-09-07 11:10:53 作者:语过添情

有点了一个谎言的。

我想知道的是,是否有可能,如果一个设备上的犯规存在的应用程序,可以在进入游戏商店下载。我知道我需要把这个code。在

What I would like to know is that is it possible that if an app doesnt exist on a device, can it go into the play store to download it. I know I need to put this code in

Intent i = getPackageManager().getLaunchIntentForPackage("com.package.address");
    startActivity(i);

但如果那不存在的,我可以再赚去Play商店

But if that doesnt exist, can I then get it to go to the Play Store

推荐答案

您可以使用下面的函数之一检查应用程序是否安装或没有。

You can use one of the following function to check whether the app is installed or not.

功能1

private boolean isAppInstalled(String packageName) {
    PackageManager pm = getPackageManager();
    boolean installed = false;
    try {
        pm.getPackageInfo(packageName, PackageManager.GET_ACTIVITIES);
        installed = true;
    } catch (PackageManager.NameNotFoundException e) {
        installed = false;
    }
    return installed;
}

或功能2

public boolean isAppInstalled(String targetPackage){
    List<ApplicationInfo> packages;
    PackageManager pm = getPackageManager();        
    packages = pm.getInstalledApplications(0);
    for (ApplicationInfo packageInfo : packages) {
        if(packageInfo.packageName.equals(targetPackage)) return true;
    }        
    return false;
}

用法

if(isAppInstalled("com.package.name")){
    //Your Code
}
else{
    startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.package.name")));
}