2010-06-08 102 views
3

我正在開發一個使用谷歌地圖數據的Android應用程序。我可以在模擬器中訪問谷歌地圖,但是當我在我的應用程序中嘗試相同的谷歌地圖不打開。什麼是問題?幫助在Android模擬器中訪問谷歌地圖

回答

3

首先我會試着做this example

檢查您的清單有:

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

還記得你的觀點應該是這樣的:

<com.google.android.maps.MapView 
     android:id="@+id/mapview" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:clickable="true" 
     android:apiKey="Your Maps API Key" 
    /> 

您可以從here讓您的地圖鍵。

5

聲音在模擬器中不使用谷歌API,如:

http://code.google.com/android/add-ons/google-apis/

你需要使用谷歌API創建Android虛擬設備(AVD): alt text

在上面截圖你可以看到'test_avd'不使用google API。 你也可以看到'test_maps_avd'確實使用google API。