0

我的应用程序中有以下活动,可在地图片段上设置地理位置,但是当我在测试中单击该活动时,它会崩溃并出现以下错误:

http://pastebin.com/6QhdL7z9

我查看了这些错误,但我无法理解为什么它会崩溃,因为它指的是 main 作为原因之一。

这是我在 onCreate() 中调用代码以供参考的地方:

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_map_gmit);
        /*map = (MapView)findViewById(R.id.map);
        map.setBuiltInZoomControls(true);*/

        //code to add a map marker at GMIT geographic location


        GoogleMap mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
        mMap.addMarker(new MarkerOptions()
                .position(new LatLng(53.271900177, -9.04889965057))
                .title("GMIT Galway Location"));;


    }
4

1 回答 1

1

Android Studio 还是 Eclipse?

您是否尝试在 SO 上搜索?;) com.google.android.maps.MapView ClassNotFoundException Android - Google Maps API v2 - NoClassDefFoundError

听起来您没有在项目中导出库.....

于 2013-09-21T19:25:20.417 回答