我試圖在用戶的默認視頻播放器中播放視頻。我希望他們一個接一個地播放(如播放列表)。目前我知道如何玩只有一個(見下面的代碼)。我可以打開文件夾或文件列表嗎?使用意圖在Android中播放多個視頻文件
這裏是我的代碼:
final Intent playIntent = new Intent(android.content.Intent.ACTION_SEND);
playIntent.setType("video/*");
playIntent.putExtra(android.content.Intent.EXTRA_STREAM, Uri.parse("file://" + filePath));
mContext.startActivity(Intent.createChooser(playIntent, "Play videos list"));
嘗試使用m3u8列表http://android.stackexchange.com/questions/5866/is-there-a-way-to-open-an-m3u8-playlist-on-android –
ps。如果你稍微更大一些的框架(包括chrome,webapp)例子https://github.com/googlecast/cast-manager-polymer/blob/master/queue-manager.html或者Android移動版上有播放列表和隊列的庫https://github.com/googlecast/CastCompanionLibrary-android/blob/master/src/com/google/android/libraries/cast/companionlibrary/cast/MediaQueue.java –