An annoying quirk with the Google Map fragment is when you rotate the activity, it'll reload and reset the map.
To prevent that, make sure you set retain instance to True.
01.
protected
void
onCreate(Bundle savedInstanceState) {
02.
super
.onCreate(savedInstanceState);
03.
04.
setContentView(R.layout.activity_map);
05.
06.
int
status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());
07.
08.
if
(status != ConnectionResult.SUCCESS) {
09.
int
requestCode =
10
;
10.
Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status,
this
, requestCode);
11.
dialog.show();
12.
return
;
13.
}
14.
15.
SupportMapFragment supportMapFragment = (SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.map);
16.
17.
// Check if first run
18.
if
(savedInstanceState ==
null
) {
19.
// Prevent map from resetting when screen rotated
20.
supportMapFragment.setRetainInstance(
true
);
21.
}
22.
}
And that should be the end of that!
Then suddenly, CAT'S HEAD out of nowhere!