Android 7.0拍照权限处理

imageUrl = FileProvider.getUriForFile(MainActivity.this,"com.example.cameraalbumtest.fileprovider",outputImage);


《manifest》

             android:name="android.support.v4.content.FileProvider"

             android:authorities="com.example.cameraalbumtest.fileprovider"

             android:exported="false"

             android:grantUrlPermissions="true">

             android:name="android.support.FILE_PROVIDER_PATHS"

             android:resource="@xml/file_paths"/>



《file_paths.xml》

 
  
xmlns:android="http://schemas.android.com/apk/res/android">
    path="Android/data/com.santong.party/" name="files_root" />
  />

你可能感兴趣的:(Android 7.0拍照权限处理)