Trouble getting video to play on Recyclerview

前端 未结 2 828
北恋
北恋 2021-02-06 09:52

I have a VideoView inside a RecyclerView. I want to eventually have a list of videos to play on a Recyclerview. I decided to start out with one video, then move on to having mul

2条回答
  •  感动是毒
    2021-02-06 10:26

    the problem is with

    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    

    before the video is loaded their values are 0 to solve this problem can use set minHeight to 1dp and layout_width to match_parent and this will do the trick, you do not need fixed width and height.

提交回复
热议问题