添加视频路径到文件提供程序路径

时间:2017-12-14 18:23:41

标签: android android-camera android-contentprovider android-fileprovider android-video-record

如何在文件提供程序中添加视频捕获路径?我收到Content Uri表单FileProvider。我使用默认相机应用程序捕获的视频在File Uri上返回Android 6.0,内容解析器返回null。我想从内容解析器cursor.getColumnIndex(OpenableColumns.SIZE)中读取视频大小。我该如何处理这个问题?

1 个答案:

答案 0 :(得分:1)

如果Uri的方案是file,请调用new File(uri.getPath()).length()以获取文件的长度。如果您对该文件具有读访问权,则此方法应该有效。