0

特定のインテント フィルターを処理するアプリケーションを 1 つ作成しました。アプリケーションのマニフェストは次のとおりです。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.company.sampleapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="15"
        android:targetSdkVersion="17" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name">
        <activity
            android:name="com.company.sampleapp.MainActivity"
            android:enabled="true"
            android:exported="true"
            android:label="@string/app_name" >

            <!-- 1 filter -->
            <intent-filter>
                <action android:name="com.company.sampleapp.ACTION_DO_SOMETHING_1" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>

            <!-- 2 filter -->
            <intent-filter>
                <action android:name="com.company.sampleapp.ACTION_DO_SOMETHING_2" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>

            <!-- default filter -->
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name="com.company.sampleapp.Seconf=dActivity"
            />
    </application>
</manifest>

次のコードを使用して、2 番目のアプリケーションからこのアプリケーションを呼び出しています。

Intent i = new Intent("com.company.sampleapp.ACTION_DO_SOMETHING_1");
startActivityForResult(i, 100);

私も試しました:

Intent i = new Intent();
i.setAction("com.company.sampleapp.ACTION_DO_SOMETHING_1");
startActivityForResult(i, 100);

しかし、毎回、次の例外が発生します:

07-18 14:22:56.234: E/AndroidRuntime(12051): Caused by: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.company.sampleapp.ACTION_DO_SOMETHING_1 }

助けてください。

4

2 に答える 2