冰浪

          哥已不再年輕 - 堅(jiān)定夢(mèng)想,畢生追求!
          posts - 85, comments - 90, trackbacks - 0, articles - 3
            BlogJava :: 首頁(yè) :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理

          操作系統(tǒng)都有一套”血緣關(guān)系“列表,它用于標(biāo)識(shí)所有可識(shí)別的類型文件的查看方式,例如:Mp3 ->Windows Media Player、Txt -> Notepad、JPG -> Picasa等等。相同的,在Android中也提供了這樣一種機(jī)制,當(dāng)用戶想查看存儲(chǔ)器中的某些文件時(shí),將通過(guò)Intent找到啟動(dòng)這種類型文件的程序。

          這里提供兩個(gè)用于查看MP4和MP3的例子作為參考:


          Intent intent = new Intent(); 
          intent.setAction(android.content.Intent.ACTION_VIEW); 
          File file = new File("/sdcard/test.mp4"); 
          intent.setDataAndType(Uri.fromFile(file), "video/*"); 
          startActivity(intent);    

          Intent intent = new Intent(); 
          intent.setAction(android.content.Intent.ACTION_VIEW); 
          File file = new File("/sdcard/test.mp3"); 
          intent.setDataAndType(Uri.fromFile(file), "audio/*"); 
          startActivity(intent);


          【http://www.androidres.com/index.php/2009/05/08/android-intent-tutorials-open-file-with-a-suitable-app/

          主站蜘蛛池模板: 平利县| 龙南县| 大港区| 库伦旗| 耒阳市| 阿图什市| 南昌县| 夹江县| 广丰县| 万山特区| 景泰县| 宣化县| 兴化市| 双峰县| 荔浦县| 寿光市| 达拉特旗| 奉新县| 和龙市| 克山县| 庆城县| 花垣县| SHOW| 德令哈市| 钟祥市| 伊宁县| 汝南县| 保亭| 清远市| 屏东县| 颍上县| 合阳县| 望江县| 白玉县| 三都| 河东区| 赤峰市| 江都市| 双牌县| 长垣县| 梅州市|