MapActivity无法解析为某种类型

时间:2011-11-15 21:25:03

标签: android google-maps android-mapview

我正忙着尝试将MapView包含在我的Android项目中。我正在关注Android开发者网站上的MapView教程,但是我收到了一个错误:

'MapActivity cannot be resolved to a type'

我尝试按Ctrl + Shift + O自动导入所有类,但它没有帮助。当我尝试手动包含地图库时,会出现此错误:

'The import com.google.android cannot be resolved'

我已将以下行(见下文)添加到Manifest,我的目标是API 7(平台:2.1)。

<uses-library android:name="com.google.android.maps" />

我做错了什么?

感谢!!!

2 个答案:

答案 0 :(得分:9)

您需要在编译时引用正确的库。但你所描述的是要求Android在运行时使用这个特定的库。

您需要右键单击Eclipse项目,Properties - &gt; Android系统。在Project Build Target中,选择供应商Google Inc ..的任何目标。

答案 1 :(得分:5)

Google API是第三方SDK。在包管理器中选择第三方。