Android GoogleMap or SupportMapFragment - null pointer exception

前端 未结 8 2187
心在旅途
心在旅途 2021-02-10 10:51

In my app i showing google map version2 in a fragment. but i get Null pointer exception at

mMap = ((SupportMapFragment) getFragmentManager().findFragmentById(R.id

8条回答
  •  轮回少年
    2021-02-10 11:19

    mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map)).getMap();
    
    if(map != null) {
             mMap.addMarker(new MarkerOptions() .position(new LatLng(xxxxxx,xxxxxx)) .title("Current Location")
             .icon(BitmapDescriptorFactory.fromResource(R.drawable.ball_pointer))
             .snippet("xxxxx"));
    }
    
    
    

    place your google api key here. You get from google Read the documentation.

提交回复
热议问题