這篇文章主要講解了Android仿搜狐視頻、微視等列表播放視頻功能的詳細解析,內(nèi)容清晰明了,對此有興趣的小伙伴可以學(xué)習(xí)一下,相信大家閱讀完之后會有幫助。
成都創(chuàng)新互聯(lián)技術(shù)團隊10余年來致力于為客戶提供成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、品牌網(wǎng)站制作、成都營銷網(wǎng)站建設(shè)、搜索引擎SEO優(yōu)化等服務(wù)。經(jīng)過多年發(fā)展,公司擁有經(jīng)驗豐富的技術(shù)團隊,先后服務(wù)、推廣了成百上千家網(wǎng)站,包括各類中小企業(yè)、企事單位、高校等機構(gòu)單位。最近項目中需要是實現(xiàn)在列表中自動播放視頻,中間遇到了些問題,終于解決,特來跟大家分享一下:
列表使用的RecyclerView 播放視頻使用MediaPlayer+TextureView。
主要思路:
1、監(jiān)聽RecyclerView的滑動,開始滑動時停止正在播放的item。
2、通過LinearLayoutManager 獲取當(dāng)前顯示的第一個item及最后一個item
3、RecyclerView停止滑動后,選擇item進行播放。如果當(dāng)前界面只有一個item,播放當(dāng)前。如果item數(shù)量大于2個,播放第二個。如當(dāng)前界面有兩個item則判定哪一個顯示的區(qū)域比較大。播放item并記錄當(dāng)前position。
附上主要實現(xiàn)邏輯:
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(); }
當(dāng)前文章:Android仿搜狐視頻、微視等列表播放視頻功能的詳細解析-創(chuàng)新互聯(lián)
轉(zhuǎn)載源于:http://aaarwkj.com/article16/gdcdg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、定制網(wǎng)站、手機網(wǎng)站建設(shè)、企業(yè)網(wǎng)站制作、網(wǎng)站收錄、虛擬主機
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容