public class NewMappingFragment extends Fragment{
...
public void setMyPlaceInMap(){
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
map.setMyLocationEnabled(true);
map.animateCamera(CameraUpdateFactory.newLatLngZoom(new LatLng(locationNState.getLocation().getLatitude(), locationNState.getLocation().getLongitude()), 17 ));
}
}
嗨,在我的应用程序中,在#34; NewMappingFragment"中有一个名为setMyPlaceInMap的函数。片段。
运行此应用程序时,它会在
处返回null pointexception map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
这一行...
我发现getFragmentManager可用于活动级别。
那么什么功能可以管理片段中的片段。???p.s:R.id.map< - 这是GoogleMaps v2的片段