所以我试图通过使用这个来开始另一个活动:
public void onClick(View v) {
// TODO Auto-generated method stub
Intent openMap = new Intent("com.highapps.bicineta.MAPVIAS");
startActivity(openMap);
}
});
我的 android 清单如下所示:
<activity
android:name=".MapVias"
android:label="@string/app_name"
android:exported="false" >
<intent-filter>
<action android:name="com.highapps.bicineta.MAPVIAS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
我得到这个错误:“没有活动来处理意图”
有趣的是,我有相同的代码块来启动另一个活动,它工作得很好。我做错了什么?