Google Map API v2未在设备上显示地图

时间:2013-07-18 07:30:23

标签: android google-maps-android-api-2

我正在运行Google地图文档中为Google Map Api v2(https://developers.google.com/maps/documentation/android/start#specify_settings_in_the_application_manifest)提供的示例代码。

代码成功运行但未在设备上加载Map。设备上仅显示白屏。我使用的是4.0.3版Android设备。

enter image description here

1)我为项目启用了服务。

enter image description here

2)生成密钥:

enter image description here

enter image description here

3)“google-play-services_lib”作为项目中的库:

enter image description here

4)Android Manifest:

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

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

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

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

    <uses-permission android:name="com.example.mapdemo.permission.MAPS_RECEIVE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <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" >

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

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

5)活动:

package com.example.mapdemo;

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

public class MainActivity extends Activity  {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);      
    }
    @Override
    public boolean onCreateOptionsMenu(Menu menu) {

        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}

6)布局:

<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/map"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:name="com.google.android.gms.maps.MapFragment"/>

6 个答案:

答案 0 :(得分:15)

使用片段活动

例如:

public class Maps extends FragmentActivity {
    GoogleMap map;
    double lat;
    double lan;
    boolean flag = false;

    // private LocationManager lm;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.mapptry);

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

将您的map.xml更改为

<fragment
    android:id="@+id/map"
    android:name="com.google.android.gms.maps.SupportMapFragment"
    android:layout_width="wrap_content"
    android:layout_height="match_parent" />

修改

还要这样做

导入android.support.v4.app.FragmentActivity;

在您执行此操作之前右键单击project-&gt; properties-&gt; buildpath-&gt; java build path - &gt;库..然后点击添加外部罐子

转到

用户\机器人-的SDK \额外\机器人\支持\ V4

选择android-support-v4.jar

PS:所有这些都提供了您的API密钥是正确的。如果 API密钥错误,那么它也只显示白屏

答案 1 :(得分:3)

尝试添加

GoogleMap googleMap =    ((MapFragment)getFragmentManager().findFragmentById(R.id.map)).getMap();

并用

替换你的xml
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.google.android.gms.maps.MapFragment"
/>

您在应用标记之外添加了以下代码,而不是将其放在标记

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

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

希望这可以帮助那些面临同样问题的人

答案 2 :(得分:1)

使用API​​密钥可能会出现此问题,或者只是检查项目api控制台(https://console.developers.google.com/project)和eclipse Windows中的SHA1指纹 - &gt;偏好 - &gt; Android - &gt;构建是相同的,其他方面只是从控制台更新SHA1到构建路径,反之亦然。

答案 3 :(得分:0)

当你确定下面提到的事情时,你的问题很可能会得到解决:

  1. 激活Google Map API

  2. 在生成API密钥时使用正确的包名称(在我的情况下这是错误的).. 这对您的情况似乎也有问题,因为包名称似乎是错误的(com.example.mapdemo)

  3. 确保您使用正确的密钥库文件生成SHA1

  4. 希望这会有所帮助。

答案 4 :(得分:0)

为了维护系统和用户的安全,Android要求应用在应用可以使用某些系统数据和功能之前请求权限。根据区域的敏感程度,系统可以自动授予权限,也可以要求用户批准请求。

https://developer.android.com/guide/topics/permissions/index.html

答案 5 :(得分:0)

万一其他人像我一样愚蠢...请确保您要测试的设备已连接到WiFi ...