在我的 Android 应用程序中,我正在使用默认的 MediaPlayed 使用意图播放所需的视频。它的代码如下
File sdcard = Environment.getExternalStorageDirectory();
File file=new File(sdcard,"big-buck-bunny.m4v");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), "video/*");
startActivity(intent);
但现在我想在播放视频的 SeekBar 位置。请给我解决方案。