如何使用MediaRecorder
?
答案 0 :(得分:1)
String recVideoPath = Environment.getExternalStorageDirectory() + videoRecordedFileName;
File file = new File(recVideoPath);
long fileVideo = file.length();
或多或少像上面那样。
答案 1 :(得分:-1)
将此放在线程中,或者更新UI的位置
currentPosition = (int) mediaPlayer.getCurrentPosition();
yourProgressBar.setProgress(currentPosition);
我希望这会有所帮助:)