我正在嘗試使用Google地圖。所以,我得到了Android的API密鑰: 嘗試在Android上使用Google地圖時出現異常
我也打開谷歌地圖API V2:
在我AndroidManifest.xml
我說:
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyAJR******************B2ur31EYL84"/>
在佈局我補充MapViews:
<com.google.android.gms.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1.0"
android:apiKey="AIzaSyAJR******************B2ur31EYL84"
android:clickable="true"
android:state_enabled="true" >
</com.google.android.gms.maps.MapView>
而另一:
<com.google.android.gms.maps.MapView
android:id="@+id/mapview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="AIzaSyAJR******************B2ur31EYL84"
android:clickable="true" />
AndroidManifest開頭:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bssys"
android:versionCode="1"
android:versionName="1.1.1" >
我的程序包與com.bssys.android./**Class名稱或包裝幾乎全部開始**/ 雖然我的活動我有個例外:
堆棧跟蹤太大。所以我把它寫在單獨的文件中。 https://dl.dropboxusercontent.com/u/77318984/stackTrace.txt
我如何運行程序: 我把它寫在Intellij Idea上,並在調試模式下運行。 使用Android SDK版本4.4。在谷歌Nexus 7(Android 4.4系統)
您使用的舊版Google地圖已不再支持,您需要查看谷歌地圖v2與谷歌播放服務https://developers.google.com/maps/documentation/ android/ – tyczj
@Balconsky - 我會殺死/刪除設備上的應用程序,並嘗試重新運行。 - 編輯:刪除鏈接到其他SO問題 –
@Balconsky - 我也會檢查該設備有一個有效的互聯網連接[你可能有,但只是確保] –