how to set google map fragment inside scroll view

后端 未结 8 971
北海茫月
北海茫月 2020-11-29 00:00

I want to set a Google map fragment inside vertical ScrollView, when I do the map does not zoom vertically, how can I override the touch event listener on

8条回答
  •  半阙折子戏
    2020-11-29 00:30

    I used the google maps listeners to resolve the scrolling issue of google map inside a scroll view.

        googleMap?.setOnCameraMoveStartedListener {
            mapView.parent.requestDisallowInterceptTouchEvent(true)
    
        }
    
        googleMap?.setOnCameraIdleListener {
            mapView.parent.requestDisallowInterceptTouchEvent(false)
    
        }
    

    By using this when you use start moving maps it disallows parent scrolling and when you stop moving maps then it allows scrolling.

提交回复
热议问题