4

问题 已解决 解决方案的简短摘要:确保您不是 api v1 的类。现在当我工作时,模拟器对测试应用程序毫无用处。所以在实际设备上进行测试。最后,如果应用程序运行正确但不显示地图,那么您的密钥有问题。我在这里注意到的是 catlog 不要说密钥错误,应用程序运行,但未显示地图。

我正在尝试 2 天来制作一个简单的谷歌地图 android 应用程序,它只在 Activity 上显示地图但失败了。尝试了每个教程,直到谷歌的第二页。没有任何效果。起作用的只是我在书中关注的应用程序,但它显示网格并且没有 MAP。通常人们会给出钥匙错误的答案,但事实并非如此。我的密钥是正确的,我在生成密钥方面工作准确。我正在使用 Google Maps Android API v2 密钥。

这是我的 activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <com.google.android.maps.MapView
        android:id="@+id/mapView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:apiKey="0AeGR0UwGH4pYmhcwaA9JF5mMEtrmwFe8RobTHA"
        android:clickable="true"
        android:enabled="true" />

</LinearLayout>

这是我的 MainActivity.java

package com.example.lbs;

import android.os.Bundle;
import android.view.Menu;

import com.google.android.maps.MapActivity;

public class MainActivity extends MapActivity {

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

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    @Override
    protected boolean isRouteDisplayed() {
        // TODO Auto-generated method stub
        return false;
    }

}

这是我的 AndroidManifest.xml

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />

    <uses-permission android:name="android.permission.INTERNET" />

    <permission
        android:name="com.example.lbs.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />

    <uses-permission android:name="com.example.lbs.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_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <uses-library android:name="com.google.android.maps" />

        <activity
            android:name="com.example.lbs.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>
    </application>

    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="AIzaSyB1RpoULFVTRkXREZX0ZAwxcz4_75Y0HYc" />

</manifest>

在此处输入图像描述

在 catlog 上,当应用程序运行时,我得到了这个

IOException processing: 26
java.io.IOException: Server returned: 3
    at android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileRequest.readResponseData(BaseTileRequest.java:115)

更新 1: 毕竟,正如我在某些地方所读到的,代码可能仅适用于 API 密钥 v1。因此,我从https://blog-emildesign.rhcloud.com/?p=435开始完全按照教程进行操作 ,最终得到了这个

在此处输入图像描述

更新 2: 现在我试图让它在实际的 Android 设备上运行。这是安卓2.3。所以做更多的工作。我最终在我的活动中

在此处输入图像描述

我可以在我的 CatLog 上看到的是

在此处输入图像描述

所以地图仍然没有显示......请帮助......

更新 3: 问题出在 API 密钥中。我在 logcat 中看不到任何关于错误键的信息。应用程序运行但不显示地图。所以我重新生成了密钥。现在我们开始 在此处输入图像描述

4

3 回答 3

1

您的问题是您生成了 Google Maps API V2 的密钥,但您正在尝试使用 Google Maps API V1 对象MapView

  <com.google.android.maps.MapView
    android:id="@+id/mapView"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:apiKey="0AeGR0UwGH4pYmhcwaA9JF5mMEtrmwFe8RobTHA"
    android:clickable="true"
    android:enabled="true" />

相反,您应该使用MapFramgentor SupportMapFragment,具体取决于您所针对的 API 级别,您可以在我就此事撰写的本指南中获得有关如何将 Google Maps API V2 集成到您的应用程序中的完整说明:

谷歌地图 API V2

更新:

第二个屏幕截图是你想在模拟器上得到的。Google Play Services没有安装在模拟器上,你看到你看到的原因。尝试在Google Play Services已安装的设备上测试此应用程序,它应该可以工作。

于 2013-08-11T03:15:26.057 回答
1

检查这个!我也有类似的问题。这对我有用!1)转到Google API Console,是否生成了API密钥。2)单击服务(出现在左侧的选项中)。3)悬停并搜索 Google Maps Android API v2。4)启用它(最初它是关闭的,因此只出现了灰色瓷砖)。

于 2015-04-06T19:52:03.670 回答
0

在 Google API 控制台中,在您的 Android 应用程序密钥下,确保您添加了两个指纹——调试指纹和发布指纹。

于 2013-08-11T03:00:40.833 回答