I have been having this issue since 24.2.0, but now I\'m using 24.2.1 and the bug is still here, it only works well <= 24.1.1.
I have an anchored FloatingActionButton
The solution was to set the FloatingActionButton visibility to GONE in the XML and when the map is ready set it back to VISIBLE.
FloatingActionButton
GONE
VISIBLE
@Override public void onMapReady(GoogleMap googleMap) { . . . yourFAB.setVisibility(View.VISIBLE); }
EDIT: This is a workaround for this bug.