中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android仿搜狐視頻、微視等列表播放視頻功能的詳細解析

發布時間:2020-07-21 15:55:20 來源:億速云 閱讀:191 作者:小豬 欄目:移動開發

這篇文章主要講解了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(); 
} 

看完上述內容,是不是對Android仿搜狐視頻、微視等列表播放視頻功能的詳細解析有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

老河口市| 乾安县| 鄂伦春自治旗| 水富县| 湖南省| 隆林| 长岛县| 望都县| 年辖:市辖区| 洪洞县| 泽普县| 成武县| 临夏县| 溧阳市| 岳西县| 云梦县| 屯昌县| 苗栗县| 襄汾县| 红桥区| 丰镇市| 保德县| 天祝| 东兰县| 大理市| 色达县| 徐闻县| 增城市| 桐庐县| 应用必备| 双江| 成武县| 昌吉市| 上思县| 凌海市| 息烽县| 金溪县| 威信县| 阿巴嘎旗| 达州市| 方正县|