Skip to content

Instantly share code, notes, and snippets.

@tophyr
Created August 20, 2014 00:33
Show Gist options
  • Save tophyr/4237c58e55674b5938df to your computer and use it in GitHub Desktop.
Save tophyr/4237c58e55674b5938df to your computer and use it in GitHub Desktop.
public class MapActivity {
private GoogleMap mMap;
private MapFragment mFragment;
public void onCreate(...) {
mFragment = MapFragment.newInstance(parameters);
// set other stuff up
}
public void somewhereLaterInCode() {
mMap = setupGoogleMapSomehow();
mFragment.setGoogleMap(mMap);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment