'Google map pinch gesture zoom/heading not working

What may be the reason why pinch zoom and heading/bearing (pitch) in google maps stops working in split screen mode. when the application is on the left side it is OK, when it is on the right side pinch zoom does not work, where to look for the reason?

@Override
    public void onMapReady(GoogleMap googleMap) {
        this.googleMap = googleMap;
        this.googleMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
        googleMap.getUiSettings().setZoomGesturesEnabled(true);
        googleMap.getUiSettings().setCompassEnabled(true);
        googleMap.getUiSettings().setMapToolbarEnabled(false); 
}

I create a completely new project, I choose from templates in android studio: "Google Maps Activity" and it's the same. The problem does not apply to all devices, the problems are mainly with Samsung.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source