0

我是 android 谷歌地图的新手,我按照一些教程开始,我收到错误。我无法在模拟器(三星 Galaxy 2)上看到谷歌地图,我写了下面的所有代码,请帮助我解决错误。

清单.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.examp.onemap"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="7"
    android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.examp.onemap.MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <uses-library android:name="com.google.android.maps" />
</application>

</manifest>

MainActivity.java

package com.examp.onemap;

import android.os.Bundle;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;

public class MainActivity extends MapActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);   
    MapView mapView = (MapView) findViewById(R.id.mapView);
    mapView.setBuiltInZoomControls(true);
}

@Override
protected boolean isRouteDisplayed() {
    return false;
}

}

我从` https://code.google.com/apis/console/生成了密钥

主要的.xml

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="AIzaSyDXwNWYXS9Lz9d-bJlodc1GELulHsalkT0"/>
4

3 回答 3

0

首先,您将两个 Google Maps API 混合在一起。您正在尝试使用看起来像 API V2 密钥的 Google Maps API V1 对象和代码。这永远不会奏效。因此,您首先需要将代码更改为 API V2 代码。你可以按照我写的这个教程来做到这一点:

谷歌地图 API V2

现在,即使您将代码更改为 API V2 代码,这仍然无法在模拟器上运行,因为如果不先安装 Google Play Services API,您将无法在模拟器上运行 Google Maps API V2。

于 2013-08-28T23:42:59.193 回答
0

编码是谷歌地图 v1。切换到谷歌地图 v2。

文档在这里

https://developers.google.com/maps/documentation/android/start

教程是

http://www.vogella.com/articles/AndroidGoogleMaps/article.html

于 2013-08-29T06:35:04.387 回答
0

如果您已将其更改为 V2,这可以帮助您:

在 Android 模拟器上运行 Google Maps v2

希望 ;)

于 2013-08-29T06:43:27.843 回答