3

在我的 android 应用程序中实现谷歌地图片段时遇到了一个严重的问题。基本上,我遵循了谷歌网站上的所有说明。获取 Google Maps API v2 密钥、设置布局和清单、导入 google-play-service 库并使用 google 的示例代码启动 GoogleMap 后,我发现模拟器不支持 Google Maps API v2,所以我上网并下载最新版本的 com.android.vending.apk 和 com.google.android.gms.apk 然后使用 adb install 将它们安装到我的模拟器中(与此处相同的情况:除非您更新 Google Play 服务(通过 Bazaar))。安装它们之后,我终于能够实现一个 MapFragment 的接口。

但是当我在我的 Android 模拟器(OS 4.1.2;API 16)中运行它时,地图中没有任何效果。不断出现“无法找到 com.google.android.gsf.gservices 的提供商信息”的错误消息。我不确定它是否与无线提供商有关。有谁知道为什么一直出现?任何建议将不胜感激!

解释一些较早的问题:地图正确显示。但是地图上的按钮(“+”和“-”)根本不起作用。我也不能点击或拖动地图。每当我在地图上单击、拖动或双击任何按钮时,它都没有给我任何响应,但 LogCat 中的错误消息显示“无法找到 com.google.android.gsf.gservices 的提供程序信息”。

这是我在 AndroidManifest.xml 中的代码:

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

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

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

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

    <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.trackmyexercise.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>

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

</manifest>

这是我的布局代码:

    <?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:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <fragment
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.MapFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/recordsButton"
        android:layout_alignParentTop="true" />

</RelativeLayout>

这是我的 MainActivity 代码:

    package com.example.trackmyexercise;

import android.os.Bundle;
import android.app.Activity;
import android.app.FragmentTransaction;
import android.view.Menu;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;

public class MainActivity extends Activity {
    GoogleMap myMap;
    MapFragment myMapFragment;

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

        myMapFragment = MapFragment.newInstance();
        FragmentTransaction fragmentTransaction = getFragmentManager()
                .beginTransaction();
        fragmentTransaction.add(R.id.map, myMapFragment);
        fragmentTransaction.commit();

        myMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
                .getMap();
        this.setUpMapIfNeeded();
        myMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    private void setUpMapIfNeeded() {
        if (myMap == null) {
            myMap = ((MapFragment) getFragmentManager().findFragmentById(
                    R.id.map)).getMap();
        if (myMap != null) {
        }
    }
    }
}
4

2 回答 2

4

错误就在这里 -->android:name="com.example.tackmyexercise.permission.MAPS_RECEIVE"

我想你的包名在这里不正确。

它应该是"com.example.trackmyexercise.permission.MAPS_RECEIVE"

于 2013-04-05T18:08:36.003 回答
1

我遵循了相同的教程,遇到了与您相同的问题,并通过执行以下操作设法获得了工作地图:

  • 右键单击项目
  • 选择“项目属性”
  • 在左侧菜单中选择“Android”
  • 在“项目构建目标”下,确保您选择了“Android XX”(我使用的是 4.2.2),而不是 Google API
  • 还要确保您的 Android 虚拟设备将“Android XX”作为目标版本,而不是 Google API

为我工作,希望对你有帮助!

于 2013-07-11T22:58:10.840 回答