Last active
August 26, 2015 10:35
-
-
Save purpose-driven-engineer/b279b625599dace0453d to your computer and use it in GitHub Desktop.
Android MapView NullPointerException
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MainMapView extends FrameLayout { | |
@InjectView(R.id.map) MapView mapView; | |
public MainMapView(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
init(); | |
} | |
private void init() { | |
inflate(getContext(), R.layout.discount_map_content, this); | |
ButterKnife.inject(this); | |
} | |
public void onCreate(Bundle savedInstanceState) { | |
mapView.onCreate(savedInstanceState); | |
// Gets to GoogleMap from the MapView and does initialization stuff | |
mapView.getMap().getUiSettings().setMyLocationButtonEnabled(false); | |
mapView.getMap().setMyLocationEnabled(true); | |
// Needs to call MapsInitializer before doing any CameraUpdateFactory calls | |
MapsInitializer.initialize(getContext()); | |
// Updates the location and zoom of the MapView | |
CameraUpdate cameraUpdate = CameraUpdateFactory.newLatLngZoom(Position.getCurrent(getContext()).toLatLng(), 14); | |
mapView.getMap().moveCamera(cameraUpdate); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment