0

メイン プロジェクトに既にある別のプロジェクトを使用しようとしていますが、そこからアクティビティを呼び出すと、ActivityNotFoundException: have you declared this activity in your androidManifest?. これは私がやったことです:

 final Intent intent = new Intent();
ComponentName cName = new ComponentName("com.GCM.pushnotifications","com.GCM.pushnotifications.RegisterActivity");

intent.setComponent(cName);         
startActivity(intent);

そしてマニフェストで:

 <activity android:name=".RegisterActivity" android:exported="true">
             <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
        </activity>

私は何を間違っていますか?これはネットで見つけたものです。

4

1 に答える 1

0

の 2 番目のパラメーターとしてアクティビティ クラス名を指定するだけです。ComponentName

これを変える

ComponentName cName = new ComponentName("com.GCM.pushnotifications","com.GCM.pushnotifications.RegisterActivity");

ComponentName cName = new ComponentName("com.GCM.pushnotifications","RegisterActivity");
于 2013-05-27T10:03:35.977 に答える