Follows:
LatLng isMe = new LatLng(mMap.getMyLocation().getLatitude(), map.getMyLocation().getLongitude());
final CameraPosition position = new CameraPosition(isMe, ZOOM_APROXIMADO, map.getCameraPosition().tilt, map.getCameraPosition().bearing);
mMap.animateCamera(CameraUpdateFactory.newCameraPosition(position));
I hope I have helped!
Best wishes,
Correction according to comment:
To keep the pattern the way you did:
LatLng isMe = new LatLng(mGoogleMap.getMyLocation().getLatitude(), mGoogleMap.getMyLocation().getLongitude());
CameraPosition cp = new CameraPosition.Builder().target(isMe).zoom(5).build();
mGoogleMap.animateCamera(CameraUpdateFactory.newCameraPosition(cp));
Let's change only the fixed position for your Map Position (the Blue Point).