MapActivity:无法获取连接工厂客户端

时间:2014-02-12 14:50:53

标签: java android

我正在尝试使用谷歌地图为我的Android应用程序,但我得到的是灰色网格和在logcat它显示错误如:

02-11 09:49:56.860:E / MapActivity(979):无法获得连接工厂客户端

  • 我已在manifest中添加了使用互联网的权限。
  • 我使用过Google图书馆。
  • 我在Android应用程序中使用了Correct Map Api键。
  • 我使用正确的模拟器来支持谷歌API 浏览器在我的模拟器中工作并连接到互联网,但我的应用程序无法正常工作甚至在Android手机上!

这是我的清单文件代码:

package="com.nawed.maps"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />
    <uses-permission android:name="android.permission.INTERNET"/>

    <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.nawed.maps.ShowMap"
            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>

我的活动课程:

package com.nawed.maps;

import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;

import android.os.Bundle;

public class ShowMap extends MapActivity {
    MapView mapView;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_show_map);
        mapView = (MapView) findViewById(R.id.mapview);
        mapView.setBuiltInZoomControls(true);
    }

    @Override
    protected boolean isRouteDisplayed() {
        return false;
    }

}

我的XML文件:

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:apiKey="MyKey"
/>

我见过其他一些重复的问题,但这对我没有用 提前谢谢。

0 个答案:

没有答案