For your Google Map instance, use the animateCamera method and set the slope to 0 degrees for the CameraBuilder instance.
public void onMapReady(GoogleMap googleMap) { CameraPosition cameraPosition = new CameraPosition.Builder().target(your_lat_long).zoom(16).tilt(0).build(); googleMap.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition)); }
source share