2012-11-14 65 views
0

我需要擴展MapActivity以在我的android應用程序中創建地圖視圖。我正在使用api 8.我註冊了一個Android Maps API密鑰。但是在類文件中,我無法擴展MapActivity。當我試圖在「SDK和AVD管理器」中添加「第三方附加組件」時,出現了一個名爲「無法獲取URL https://dl-ssl.google.com/android/repository/addons_list.xml,原因:文件未找到」的錯誤。然後,我嘗試通過應用「http://dl-ssl.google.com/android/repository/repository.xml」和「https://dl-ssl.google.com/」來「添加附加網站網址」 android/repository/repository.xml「的網址,錯誤信息仍然顯示。 請幫忙如何將谷歌地圖添加到android api 8

+0

我已經解決了這個問題。關鍵點是升級sdk atleast api級別16. – Chinthyfy

+0

Google API級別8包含Maps API,但不包含Android API 8!在您的解決方案中,API級別16仍不包含Maps API,因爲Google Maps API僅存在於Google API級別中。所以你的關鍵點是錯的! – mybecks

+0

@mybeck感謝您的更正。但是我可以在下載Android 4.0.3的所有更新(API 15)之後加載mapview, – Chinthyfy

回答

0

請檢查您的Android項目是否使用Google API(包括Map Kit)作爲Build SDK。 無需添加第三方插件或其他人。

Android SDK不包含地圖工具包和其他一些功能。 Google API包含Android API,並使用Map Kit等更多功能擴展該API。請檢查下面的鏈接瞭解詳情:Difference between target google APIs and target android

BR, mybecks

相關問題