ActivityNotFoundException处理

时间:2013-06-21 12:51:47

标签: android android-intent exception-handling

我几年没有做过异常处理,我似乎无法弄清楚我做错了什么。我有一个应用程序打开我的另一个应用程序,如果用户还没有其他应用程序,我希望当前的应用程序重定向到Play商店。现在如果没有安装应用程序,程序将强行关闭。我目前的代码是:

try{
    Intent intent = new Intent();
    PackageManager manager = getPackageManager();
    intent = manager.getLaunchIntentForPackage("my.app.package");
    intent.addCategory(Intent.CATEGORY_LAUNCHER);
    startActivity(intent);
   }
catch(ActivityNotFoundException activityNotFound){
    Intent playStoreIntent = new Intent(Intent.ACTION_VIEW, 
    Uri.parse("market://details?id=my.app.package"));
    startActivity(playStoreIntent);
   }

我有一种感觉,我正在做一些非常愚蠢的事情并且误导了catch功能。任何帮助将非常感激。

2 个答案:

答案 0 :(得分:5)

尝试使用此代码。评论中给出的解释

String packageName = "my.app.package";
try{
        Intent intent = new Intent();
        PackageManager manager = getPackageManager();
        intent = manager.getLaunchIntentForPackage(packageName);
        //if application not installed, intent to get launcher will be null
        if(intent != null) {
            intent.addCategory(Intent.CATEGORY_LAUNCHER);
            startActivity(intent);
        }else{
                   //launch play store with package name
            Intent playStoreIntent = new Intent(Intent.ACTION_VIEW, 
                    Uri.parse("market://details?id=my.app.package"));
                    startActivity(playStoreIntent); 
        }
       }
    catch(ActivityNotFoundException activityNotFound){
        // to handle play store not installed scenario
        Intent intent = new Intent(Intent.ACTION_VIEW, Uri
                .parse("http://play.google.com/store/apps/details?id=" + packageName));
        startActivity(intent);
}

答案 1 :(得分:0)

你可以试试这个:不需要尝试捕获。

 Intent LaunchIntent = getActivity().getPackageManager().getLaunchIntentForPackage(packagename);

 if(null!=LaunchIntent)
    {
       startActivity(LaunchIntent);
    }
else
    {
      //intent to open the market.
    }