谷歌地图在android灰色网格中

时间:2013-04-04 10:08:11

标签: android google-maps

我正在尝试在应用中使用mapviews,所以我逐一按照步骤操作。但我只是一个灰色网格。我生成了四次API密钥,但每次都得到相同的结果。

你可以帮我吗?

这些是我得到的错误:

failed to find provider info for com.google.settings
couldn't get connection factory client

我的清单文件

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

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

       <uses-permission android:name="android.permission.INTERNET" />
         <uses-permission     android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
         <uses-permission     android:name="com.me.test.g_maps.permission.MAPS_RECEIVE"/>
         <uses-permission     android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
         <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

        <permission
        android:name="com.me.test.g_maps.permission.MAPS_RECEIVE"
        android:protectionLevel="signature"/>

        <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
            <activity
            android:name="com.me.test.g_maps.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="AIzaSyCEgLQ7HgXiKTP8grZRmpIPAeWoSfAjrBM"/>

            <uses-library android:name="com.google.android.maps" />

        </application>

        </manifest> 

我的活动

    package com.me.test.g_maps;

    import android.os.Bundle;

   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
        protected boolean isRouteDisplayed() {
            // TODO Auto-generated method stub
            return false;
        }

    }

我的xml

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

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

    </RelativeLayout>

3 个答案:

答案 0 :(得分:1)

看起来您遇到的问题很少(如果您的定位是Google Map API V2技术)

1。首先删除此权限:

<uses-library android:name="com.google.android.maps" />

它是Google Maps API V1的一部分,在Google Maps API V2中不需要。

2。 Google Maps API V2需要OpenGL-v2支持,因此您必须将以下内容添加到清单文件中:

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

3。检查您是否在Google API控制台中启用了正确的API: enter image description here

4。尝试重新生成密钥,删除debug.keystore,编译项目并生成新的SHA1签名。

5. 如果您在模拟器中运行应用程序,请查看我撰写的关于如何在模拟器中启用Google Map API V2的博文:

Google Map API V2 in the Emulator

答案 1 :(得分:0)

如果您使用的是Google api V1,则必须create a debug key在调试应用程序时正确加载地图而不签名。
否则,你必须看看here。清单上的新配置需要使用google maps api V2。

答案 2 :(得分:0)

com.google.android.maps.MapView替换为com.google.android.gms.maps.MapView。您仍在使用Maps API V1的部分内容。并且使用SupportMapFragment而不是MapView更好(更容易)。

也不要使用MapActivity