23

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

代码运行成功,但地图未加载到设备上。设备上仅显示白屏。我正在使用 4.0.3 版本的 Android 设备。

在此处输入图像描述

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

在此处输入图像描述

2) 生成的密钥:

在此处输入图像描述

在此处输入图像描述

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

在此处输入图像描述

4)安卓清单:

<?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"/>
4

6 回答 6

14

使用 Fragment 活动

例如:

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;

在你这样做之前右键单击项目->属性->构建路径->java构建路径->库..然后单击添加外部jar

用户\android-sdks\extras\android\support\v4

选择 android-support-v4.jar

PS:如果您的 API 密钥正确,请执行所有这些操作。如果您的API 密钥错误,那么它也只会显示白屏

于 2013-07-18T07:49:08.830 回答
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" />

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

于 2015-05-26T12:16:40.123 回答
1

可能是 API 密钥的问题,或者您只是在项目 api 控制台( https://console.developers.google.com/project )中检查您的 SHA1 指纹,并且您的 Eclipse Windows -> Preferences -> Android -> Build 相同,否则,只需从控制台更新 SHA1 以构建路径,反之亦然。

于 2015-06-30T07:47:01.270 回答
0

当您确保以下提到的事情时,您的问题很可能会得到解决:

  1. 激活谷歌地图 API

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

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

希望这会有所帮助。

于 2016-04-19T21:21:47.177 回答
0

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

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

于 2017-01-28T13:23:07.773 回答
0

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

于 2020-03-20T15:54:53.277 回答