0

我做的一切都正确,通过使用debug.keystore我生成了我的MD%代码,我从谷歌网站获得了我的有效API密钥,我允许在MasinFest.xml中使用互联网连接,并在main.xml.和MapActivity中使用我的映射键值文件我只是在下面的代码中使用了这个

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

public class MapsActivity extends MapActivity 
{    
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
    }

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

我正在使用 Android 4.0.3 版本和 Google API Level 15,我收到错误为 05-22 10:32:42.086: E/MapActivity(656): Couldn't get connection factory client in LogCat.. 帮我解决这个问题请..在此先感谢

4

1 回答 1

0

好吧,您正在尝试导入谷歌地图的类。为此,您需要确保您尝试使用的设备上已经安装了谷歌地图应用程序。除非它在您的设备上找到谷歌地图应用程序,否则您的应用程序将无法工作。

于 2012-05-22T05:34:59.407 回答