Posted on 2010-01-22 00:15
冰浪 閱讀(383)
評論(0) 編輯 收藏 所屬分類:
Android
操作系統都有一套”血緣關系“列表,它用于標識所有可識別的類型文件的查看方式,例如:Mp3 ->Windows Media Player、Txt -> Notepad、JPG -> Picasa等等。相同的,在Android中也提供了這樣一種機制,當用戶想查看存儲器中的某些文件時,將通過Intent找到啟動這種類型文件的程序。
這里提供兩個用于查看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/】