我正在尝试从已安装的 Google Play APK 扩展 OBB 文件中的文件加载电影。
mMediaPlayer = new MediaPlayer();
StorageManager storageManager = (StorageManager)mParentActivity.getSystemService(Context.STORAGE_SERVICE);
String obbPath = ExpansionHelper.getExpansionFilePath(mParentActivity);
File movie = new File(storageManager.getMountedObbPath(obbPath), filename);
Log.d(Constants.TAG, "Movie exists is " + movie.exists());
mMediaPlayer.setDataSource(obbPath);
注意:电影存在日志“真”
E/MediaPlayer(27155):错误 (1,-2147483648) 打开文件时出错。卸载媒体播放器(未指定的媒体播放器错误,-2147483648) E/MediaPlayer(27155):在状态 0 中调用停止 E/MediaPlayer(27155):错误 (-38, 0)
如何从 APK OBB 扩展文件(不是 zip 类型)播放电影?