Android 解析標準的點擊第三方文件管理器中的視頻的intent

来源:http://www.cnblogs.com/lipeineng/archive/2017/11/02/7770958.html
-Advertisement-
Play Games

解析標準的第三方視頻intent 列印的日誌: ...


解析標準的第三方視頻intent

    private List<String> mCurPlayList = new ArrayList<String>();
    private int mCurPosition = 0; // 當前的位置信息

 

if (intent != null && TextUtils.equals(intent.getAction(), Intent.ACTION_VIEW)
                && !TextUtils.isEmpty(intent.getType()) && intent.getType().contains("video")) {
            // 用來解析標準的第三方視頻intent
            String data = intent.getDataString(); // 這個地方獲取的是亂碼需要解析  file:///mnt/udisk2/%E7%BE%A4%E6%98%9F%20-%20%E5%8C%97%E4%BA%AC%E7%A5%9D%E7%A6%8F%E4%BD%A0.mp4
            String folder = data;
            if (!TextUtils.isEmpty(data)) {
                if (data.startsWith("file://")) {
                    data = Uri.decode(data).substring(7);
                    Logcat.d("initData replaceFirst data " + data);
                }
                if (data.lastIndexOf("/") > 0) {
                    folder = data.substring(0, data.lastIndexOf("/"));
                    Logcat.d("initData substring folder " + folder);
                }
                File file = new File(folder);
                VideoUtils.GetVideoFile(mCurPlayList, file);
                if (mCurPlayList != null && mCurPlayList.size() > 0) {
                    mCurPosition = mCurPlayList.indexOf(data);
                }
            }
            Logcat.d("initData " + data + "; mCurPosition " + mCurPosition);
        } 

 

 

    
  // 遍歷指定目錄的視頻文件
  public static void GetVideoFile(final List<String> mList, File file) { if (mList == null) { Logcat.w("mList is null "); return; } if (file == null) { Logcat.w("file is null "); return; } mList.clear(); file.listFiles(new FileFilter() { @Override public boolean accept(File file) { if (FileUtils.isVideo(file)) { mList.add(file.getAbsolutePath()); Logcat.d("initData AbsolutePath " + file.getAbsolutePath()); return true; } return false; } }); }

 

    /** whether the file is video */
    public static boolean isVideo(File file) {
        String surfix = getFileSurfix(file);
        return (surfix.equals("avi") || surfix.equals("mp4")
                || surfix.equals("3gp") || surfix.equals("rmvb")
                || surfix.equals("mov") || surfix.equals("wmv")
                || surfix.equals("mpeg") || surfix.equals("mpg")
                || surfix.equals("rm") || surfix.equals("vob")
                || surfix.equals("mkv") || surfix.equals("flv")
                || surfix.equals("asp") || surfix.equals("ASF")
                || surfix.equals("m2ts") || surfix.equals("ts")
                || surfix.equals("divx"));
    }

 

 

    /** Get file suffix from file path */
    public static String getFileSurfix(File file) {
        String surfix = "";

        if (file != null) {
            String filePath = file.getAbsolutePath();
            surfix = getFileSurfix(filePath);
        }
        return surfix.toLowerCase();
    }

 

 

    /** Get file suffix from file path */
    public static String getFileSurfix(String filePath) {
        String surfix = "";

        if (filePath != null) {
            int surfixPos = filePath.lastIndexOf(".");
            int surfixPosDivider = filePath.lastIndexOf("/");
            // invalid : abcdefg.hijk/lmn
            if (surfixPos > 0 && surfixPos > surfixPosDivider)
                surfix = filePath.substring(surfixPos + 1, filePath.length());
        }

        return surfix.toLowerCase();
    }

 

 

          <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <data
                    android:mimeType="video/*"
                    android:scheme="http" />
                <data
                    android:mimeType="video/*"
                    android:scheme="file" />
                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>

 

列印的日誌:

11-02 09:34:03.739 2469-2469/? D/RRIVI: VideoPlayerActivity.java(318):initData: initData replaceFirst data /mnt/udisk2/Lady.GaGa.-.Poker.Face.avi
11-02 09:34:03.740 2469-2469/? D/RRIVI: VideoPlayerActivity.java(322):initData: initData substring folder /mnt/udisk2
11-02 09:34:03.744 2469-2469/? D/RRIVI: VideoUtils.java(86):accept: initData AbsolutePath /mnt/udisk2/Wildlife.wmv
11-02 09:34:03.744 2469-2469/? D/RRIVI: VideoUtils.java(86):accept: initData AbsolutePath /mnt/udisk2/江南絲帶舞.mp4
11-02 09:34:03.745 2469-2469/? D/RRIVI: VideoUtils.java(86):accept: initData AbsolutePath /mnt/udisk2/群星 - 北京祝福你.mp4
11-02 09:34:03.746 2469-2469/? D/RRIVI: VideoUtils.java(86):accept: initData AbsolutePath /mnt/udisk2/少女時代的-My Oh My.mp4
11-02 09:34:03.746 2469-2469/? D/RRIVI: VideoUtils.java(86):accept: initData AbsolutePath /mnt/udisk2/Lady.GaGa.-.Poker.Face.avi
11-02 09:34:03.747 2469-2469/? D/RRIVI: VideoUtils.java(86):accept: initData AbsolutePath /mnt/udisk2/mv_少女時代 - Gee.rmvb
11-02 09:34:03.747 2469-2469/? D/RRIVI: VideoPlayerActivity.java(330):initData: initData /mnt/udisk2/Lady.GaGa.-.Poker.Face.avi; mCurPosition 4

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 這裡對於App在微信開放平臺上申請AppID和secret在這裡就略過了,我們微信的授權登錄流程,騰訊官網給的流程如下: 1. 第三方發起微信授權登錄請求,微信用戶允許授權第三方應用後,微信會拉起應用或重定向到第三方網站,並且帶上授權臨時票據code參數; 2. 通過code參數加上AppID和Ap ...
  • 地推是推廣app的一種重要手段,同時地推結算對地推統計的精度的要求非常高,而openinstall就是一款符合要求的地推統計結算工具。它不僅多渠道統計能力強,安裝設備識別精準,渠道統計精度高。還支持地推人員單獨查看所負責渠道的實時統計數據,避免統計數據爭議,同時讓也讓推廣人員實時瞭解自己的推廣狀態,... ...
  • 一,效果圖。 二,工程圖。 三, 代碼。 ViewController.h #import <UIKit/UIKit.h> //loading #import "GPLoadingButton.h" @interface ViewController : UIViewController { //l ...
  • 最正規的辦法,用通知 step 1:在進入視圖的時候添加監視:(viewDidLoad什麼的) step 2:在鍵盤動作的時候移動視圖: step 3:在退出視圖的時候註銷通知viewDidUnload: step 4:dealloc: 這些代碼是摘自apple sample code Keyboa ...
  • if (indexPath.row % 2 == 0) { cell.backgroundColor = [UIColor magentaColor]; }else{ cell.backgroundColor = [UIColor whiteColor]; } ...
  • 移動端身份證識別SDK的研發背景: 隨著智能終端以及移動通信(4G)的迅速發展,原來運行在PC機上的信息系統逐漸轉移到智能終端上來,2016年是人工智慧元年,也是移動互聯網下半場的開始,各種APP如雨後春筍般出現在人們的視野中,電信實名制、互聯網APP實名制、徵信系統實名制相繼推出,無論從政策上還是 ...
  • 在我們進行地圖相關開發時候,避免不了要繪製比例尺。在百度,高德的地圖API里都提供了比例尺控制項,但是ArcGIS for Android里並沒有提供。不過沒關係,我們可以自己繪製一個比例尺來。 在繪製比例尺前,我們先瞭解幾個概念: 其中PPI和DPI在實際生活中的定義是不太一樣的,而在Android ...
  • 打包時登錄ApplicationLoader時 報錯:Please sign in with an app-specific password. You can create one at appleid.apple.com 出現這個錯誤的原因是 賬號開啟了雙重認證;解決方法如下: 1.在Apple ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...