Android:我可以使用第三方应用程序的这个意图吗?

我正在使用意图通过Twitter客户端发布消息。 当手机上没有Twitter应用程序时,我想将用户重定向到市场。 但是异常ActivityNotFoundException不起作用。 每次(当我没有Twitter应用程序时),我收到错误“没有应用程序可以执行此操作”

Intent intentTwitter = new Intent(Intent.ACTION_SEND);
intentTwitter.putExtra(Intent.EXTRA_TEXT,msg);
intentTwitter.setType("application/twitter");

try{
 startActivity(Intent.createChooser(intentTwitter,"tweet"));
}catch(ActivityNotFoundException e){
 // lead to the app market
}

我读了ActivityNotFoundException是startActivity及其子的异常处理程序。 也许解决方案不在异常处理中。


这是发布的解决方案。

我使用PackageManager和queryIntentActivities()来指示指定的操作是否可以用作意图。 该方法向包管理器查询可以响应具有指定操作的意图的电话上已安装的包。 如果找不到包,则该方法返回false。

public static boolean isIntentAvailable(Context context, String action) {
        final PackageManager packageManager = context.getPackageManager();
        final Intent intent = new Intent(action);
        List<ResolveInfo> list =
                packageManager.queryIntentActivities(intent,
                        PackageManager.MATCH_DEFAULT_ONLY);
        return list.size() > 0;
    }

这是完整的代码。 我使用Twitter客户端连接到Twitter。 所以我正在使用

public void ConnectTwitter(){
    String msg = getResources().getString(R.string.partager_twitter).toString();
    Intent intentTwitter = new Intent(Intent.ACTION_SEND);
    intentTwitter.putExtra(Intent.EXTRA_TEXT,msg);
    intentTwitter.setType("application/twitter");
    if (isIntentAvailable(this,"application/twitter")){
        startActivity(Intent.createChooser(intentTwitter,getResources().getString(R.string.partager_sel_tweet)));
    }
    else{
        /* Handle Exception if no suitable apps installed */  
        Log.d("twitter", "Catch exception");
        new AlertDialog.Builder(PartagerActivity.this)  
       .setTitle(getResources().getString(R.string.partager_sel_tweet))  
       .setMessage(getResources().getString(R.string.partager_app_download))
       .setNegativeButton("Non", null)  
       .setPositiveButton("Oui", new DialogInterface.OnClickListener() {  
                     public void onClick(DialogInterface dialog, int whichButton) {  
                        intentMarket("market://search?q=twitter");  
                     }  
                 })  
       .show();     
    }

}

与intentMarket method.Just输入url =“市场://搜索?q = twitter”顺便说一句市场没有安装在模拟器。

public void intentMarket (String url){
    Intent i = new Intent(Intent.ACTION_VIEW);
    Uri u = Uri.parse(url);
    i.setData(u);
    try{
        startActivity(i);
    }
    catch(ActivityNotFoundException e){
        Toast.makeText(this, "Pas d'applications twitter trouvé.", Toast.LENGTH_SHORT).show();  
    }
}

关于PackageManager的更多信息http://android-developers.blogspot.com/2009/01/can-i-use-this-intent.html

竖起大拇指,如果你觉得这很有用!


我建议使用PackageManagerqueryIntentActivities()来确定是否有某件事会处理你的startActivity()请求。

链接地址: http://www.djcxy.com/p/41959.html

上一篇: Android : Can I use this intent from a 3rd party application?

下一篇: Sending an Intent to browser to open specific URL