Play Video Inside View Pager
I have to play 3 videos inside view pager and I am using PagerAdapter to go to different pages. I am facing some problems : On the first time, the first video does not render, it
Solution 1:
The simplest way to show video in viewpager is to use FragmentStatePagerAdapter
instead of PagerAdapter
.
Under getItem
of FragmentStatePagerAdapter
, create instance of fragment where you will show the video. Play and Pause/Stop functionality of the video should be handled in Fragment's onStart
& onStop
lifecycle methods
Post a Comment for "Play Video Inside View Pager"