如何在ListView中播放视频,如Instagram和Vine?

时间:2014-11-20 15:44:00

标签: android listview instagram android-videoview vine

我是Android开发的新手,我正在尝试在列表视图中播放多个视频。目前,每个listview行项都是VideoView。当我开始滚动时,这种方法不起作用,因为VideoViews行为异常。我已经研究过hereherehere,并发现VideoViews和TextureViews在ListViews和ScrollViews中不能很好地工作。 Vine和Instagram等应用程序如何在列表视图中播放视频?非常感谢任何帮助?

1 个答案:

答案 0 :(得分:2)

虽然答案很晚但我认为这可能有助于搜索同样的人。有一个来自github的示例应用程序,它具有此要求的实现。: -

https://github.com/danylovolokh/VideoPlayerManager

要了解代码,请参阅以下链接,它对您非常有帮助: -

https://medium.com/@v.danylo/implementing-video-playback-in-a-scrolled-list-listview-recyclerview-d04bc2148429

问题是列视图中的 VideoView 存在一些限制 并处理播放,因此该库工具是基于 TextureView VideoView 。这是enter image description here

的样子
相关问题