我的应用程序中有以下活动,可在地图片段上设置地理位置,但是当我在测试中单击该活动时,它会崩溃并出现以下错误:
我查看了这些错误,但我无法理解为什么它会崩溃,因为它指的是 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"));;
}