我有 2 个包裹:
1)com.example.appui
2)com.example.mapsApi
我想从第一个包开始第二个包的主要活动。这是我的代码:
在清单上 <activity android:name="com.example.mapsApi.MapsActivity"/>
关于活动:
try{
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.example.mapsApi","com.example.mapsApi.MapsActivity");
startActivity(intent);
}catch (Exception e)
{
e.printStackTrace();
}
我得到的错误是:无法找到显式类(com.example.mapsApi.MapsActivity)已在清单中声明它?
难道我做错了什么?