我在我的应用程序中添加了一个地图片段,包括一个地理标记并包含我的播放服务 jar,但我的标记代码出现以下错误:
Error: Cannot cast from Fragment to SupportMapFragment
片段如下:
GoogleMap mMap = ((SupportMapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
mMap.addMarker(new MarkerOptions()
.position(new LatLng(53.271900177, -9.04889965057))
.title("GMI alway Location"));;
这是我引用它的 xml 声明:
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
有人对我要去哪里有任何想法吗?谢谢布赖恩 J