0

我试图使用谷歌地图 v2 构建一个简单的行人航位推算应用程序。但总是出现错误“授权失败”和“无法联系谷歌服务器”。我已经检查了 api 密钥,在 Google API 控制台中启用了“Google Maps Android v2”服务,并允许我的应用程序使用该 API。但仍然无法正常工作。

这是我的清单:

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="16" />
    <permission
        android:name="com.example.pdr.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />
    <uses-permission android:name="com.example.pdr.permission.MAPS_RECEIVE"/>
    <uses-permission android:name="android.permission.INTERNET"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
    <uses-feature 
        android:glEsVersion="0x00020000"
        android:required="true"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.pdr.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>
        <activity android:name="com.example.pdr.MapActivity"></activity>
        <meta-data 
            android:name="com.google.android.maps.v2.API_KEY" 
            android:value="AIzaSyCu0QDFkPWOOAr0PACX2AUSSGkPWYmdpr0"/>
    </application>

</manifest>

这是使用地图的活动

public class MapActivity extends FragmentActivity {

private MapView map = null;
private GoogleMap gMap;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main_menu);
    setUpMapIfNeeded();
};

@Override
protected void onResume() {
    // TODO Auto-generated method stub
    super.onResume();
    setUpMapIfNeeded();
}

private void setUpMapIfNeeded() {
    if (gMap == null) {

        gMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map))
                .getMap();
    }
}

private void setUpMap() {
    gMap.addMarker(new MarkerOptions().position(new LatLng(0, 0)).title("Marker"));
}
}

最后,这是布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context=".MapActivity" >

<fragment xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/map"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  class="com.google.android.gms.maps.SupportMapFragment"/>

</RelativeLayout>

有人可以帮我吗?我已经挣扎了好几天了..提前谢谢,对不起我的英语...

4

1 回答 1

2

此问题与您的 api-key 生成过程有关。请按照下面提到的步骤生成密钥- 1. 使用 keytool 生成 SHA-1。2. 在浏览器上打开 google 控制台,不要忘记从服务中启用Google Maps Android API v2,现在继续 API Access,点击创建新的 Android 密钥,粘贴您的 SHA-1 以及分号和您的项目包名称,然后点击在创建时,3. 复制新的 API 密钥并粘贴到您的清单中。4.最重要的是,如果已经安装,不要忘记从sdk的extras文件夹导入google play服务库,否则转到Android sdk-manager -> extras->google play service,安装然后从你的sdk位置导入->extras ->谷歌->谷歌播放服务。5. 现在将此库添加到您的工作项目中。

这是执行google maps android v2的整个过程。现在你可以运行你的项目了,干杯......

于 2013-04-30T06:46:07.397 回答