【目录】
(一) ---------------------------------Android代码
(二)---------------------------------Android 系统7.0以上调用相机兼容问题
(三)-----------------------------------后台服务器代码
【步骤】
①在res/xml文件夹下新建file_paths.xml文件,没有xml文件夹则右击新建
1 23 4 65
②在AndroidManifest文件application标签内添加如下代码
16 9
?拍照获取Uri时使用
1 File mPhotoFile = new File(mPhtotPath);2 if (!mPhotoFile.exists()) {3 mPhotoFile.createNewFile();4 }5 6 Uri uriImage = FileProvider.getUriForFile(context, getPackageName() + ".provider",mPhotoFile);
具体使用请参考