我在我的 android 应用程序中显示这样的地图:
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
片段定义如下:
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment"
map:cameraTargetLat="28.635308"
map:cameraTargetLng="77.224960"
map:uiCompass="true"
map:uiRotateGestures="true"
map:uiScrollGestures="true"
map:uiTiltGestures="true"
map:uiZoomControls="true"
map:uiZoomGestures="true"/>
问题出在某些手机上运行良好,而在其他手机(android 2.2、2.3)上则无法正常工作。在这些情况下,地图对象为空。在我看来,这背后的原因是这些手机上没有安装谷歌播放服务。我是否正确,如果是,可能的解决方法是什么。