Android Scrollview having videoview is giving problem

前端 未结 3 659
谎友^
谎友^ 2020-12-01 13:27

I have a VideoView that is inside a scrollView. When I scroll the scrollView, the VideoView does not scroll with it. It is like its position is fixed. Here is my layout:

相关标签:
3条回答
  • 2020-12-01 13:58

    you cannot scroll videoview while playing as described here.

    i had a videoview inside viewpage, when i scroll i pause the video and show image on top of it. "myby this work around can help"

    0 讨论(0)
  • 2020-12-01 14:04

    You could also set for your VideoView:

        android:background:"#0000"
    
    0 讨论(0)
  • 2020-12-01 14:15

    Call requestLayout() for the video view. It resolved same issue for me.

    0 讨论(0)
提交回复
热议问题