サードパーティActivityを開く前にIntentが解析されるかどうかを判断する

1327 ワード

自分のアプリケーションでサードパーティ製アプリケーションのActivityやServiceを利用するのは便利ですが、ユーザーデバイスに特定のアプリケーションがインストールされているか、デバイスにIntentリクエストを処理できるプログラムがあるかは保証できません.
したがって,サードパーティAPKのActivityを起動する前に,呼び出しがActivityとして解析できるかどうかを決定するのがよい.
IntentのresolveActivityメソッドを使用して、このメソッドをパケットマネージャに転送して、Activityが起動できるかどうかを判断するために、パケットマネージャを問い合わせることができます.
// Create the impliciy Intent to use to start a new Activity.
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:555-2368"));
// Check if an Activity exists to perform this action.
PackageManager pm = context.getPackageManager();
ComponentName cn = intent.resolveActivity(pm);
if (cn == null) {
    // If there is no Activity available to perform the action
    // Check to see if the Google Play Store is available.
    Uri marketUri = Uri.parse("market://search?q=pname:com.myapp.packagename");
    Intent marketIntent = new Intent(Intent.ACTION_VIEW).setData(marketUri);
    // If the Google Play Store is available, use it to download an application
    // capable of performing the required action. Otherwise log an error.
    if (marketIntent.resolveActivity(pm) != null) {
        context.startActivity(marketIntent);
    } else {
        Log.d(TAG, "Market client not available.");
    }
} else{
    context.startActivity(intent);
}