我正在尝试在 android 中进行 Map View(从 iOS 迁移)。在 android SDK 面板中,我安装了 google API (API 17),我希望它能解决问题。所以在我的源代码中我有:
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
它给了我错误:The import com.google cannot be resolved
。我已经在谷歌上搜索了一个结果,但它们没有工作(他们中的大多数人都在确保安装了谷歌 API。
我在使用从 android 开发网站下载的 Eclipse ADT 使用 64 位 Macbook Pro。
在AndroidManifest.xml
我的文件中:
<uses-library android:name="com.google.android.maps" />