前端之家收集整理的这篇文章主要介绍了
如何在Android中获取实时视频录制的文件大小?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
String recVideoPath = Environment.getExternalStorageDirectory() + videoRecordedFileName;
File file = new File(recVideoPath);
long fileVideo = file.length();
或多或少像上面那样的东西.
原文链接:https://www.f2er.com/android/314878.html