File Provider, 今天解决一个bug:
首先是SDK24以上,打开相机拍照,uri路径不能使用file://,需要使用content:// ;
其次是收到返回值时,是File Provider封装过的路径,不是真实路径地址,需要自己再转换。
原始地址: /storage/emulated/0/DCIM/GalleryFinal/IMG20191219134527.jpg
原来的uri: file://storage/emulated/0/DCIM/GalleryFinal/IMG20191219134527.jpg(好像是,也没看)
File Provider 的 uri: content://com.jtcloud.teacher.provider/external_files/DCIM/GalleryFinal/IMG20191219134527.jpg
接收到的uri的getPath(): /external_files/DCIM/GalleryFinal/IMG20191219133647.jpg
收藏了个帖子,记得看看,总结