我正在尝试使用我在主项目中已有的另一个项目但是当我从中调用活动时,我得到了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>
我做错了什么?这就是我在网上发现的。
答案 0 :(得分:0)
您只需提供活动类名称作为ComponentName
更改此
ComponentName cName = new ComponentName("com.GCM.pushnotifications","com.GCM.pushnotifications.RegisterActivity");
到
ComponentName cName = new ComponentName("com.GCM.pushnotifications","RegisterActivity");