在您的xml文件中,将其更改
为android:name="com.google.android.gms.maps.SupportMapFragment"
将您的活动扩展到FragmentActivty并进行更改
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)) .getMap(); to map= ((SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map)).getMap();
还要检查
if (map== null) { map= ((SupportMapFragment) getSupportFragmentManager() .findFragmentById(R.id.map)).getMap();}希望这可以帮助。



