Android列表中播放视频 Android仿搜狐视频、微视等列表播放视频功能
mayi203 人气:0想了解Android仿搜狐视频、微视等列表播放视频功能的相关内容吗,mayi203在本文为您仔细讲解Android列表中播放视频的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android,列表,播放视频,下面大家一起来学习吧。
最近项目中需要是实现在列表中自动播放视频,中间遇到了些问题,终于解决,特来跟大家分享一下:
列表使用的RecyclerView 播放视频使用MediaPlayer+TextureView。
主要思路:
1、监听RecyclerView的滑动,开始滑动时停止正在播放的item。
2、通过LinearLayoutManager 获取当前显示的第一个item及最后一个item
3、RecyclerView停止滑动后,选择item进行播放。如果当前界面只有一个item,播放当前。如果item数量大于2个,播放第二个。如当前界面有两个item则判定哪一个显示的区域比较大。播放item并记录当前position。
附上主要实现逻辑:
try { int fristPos = layoutManager.findFirstVisibleItemPosition(); int lastPos = layoutManager.findLastVisibleItemPosition(); ViewHolder holder = null; if (recyclerView.getChildCount() == 2) { View fristView = recyclerView.getChildAt(0); if (fristView != null) { int[] location = new int[2]; fristView.getLocationInWindow(location); if (location[1] > 0) { holder = (ViewHolder) recyclerView.findViewHolderForPosition(fristPos); lastPlayPosition = fristPos; } } if (holder == null) { View lastView = recyclerView.getChildAt(1); if (lastView != null) { int[] lastViewLocation = new int[2]; lastView.getLocationInWindow(lastViewLocation); if ((lastViewLocation[1] + videoHeight) < screenHeight) { holder = (ViewHolder) recyclerView.findViewHolderForPosition(lastPos); lastPlayPosition = lastPos; } } } } else if (recyclerView.getChildCount() == 1) { holder = (ViewHolder) recyclerView.findViewHolderForPosition(fristPos); lastPlayPosition = fristPos; } else { holder = (ViewHolder) recyclerView.findViewHolderForPosition(fristPos + 1); lastPlayPosition = fristPos + 1; } if (holder != null) { holder.play(); } } catch (Exception e) { e.printStackTrace(); }
加载全部内容