android8.0中调用相机拍照

网址:https://blog.csdn.net/q992767879/article/details/79654733
  1.
      
    android:name="android.support.v4.content.FileProvider"
    
    android:authorities="(你的包名).fileprovider"
    
    android:exported="false"
    
    android:grantUriPermissions="true">
    
             
        android:name="android.support.FILE_PROVIDER_PATHS"
        
        android:resource="@xml/file_paths">
    
   

   2.在rec文件下创建xml文件夹,在里面创建xml文件


   
    
     

   3.使用
private void useCamera() {
        
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        
file = new File(Environment.getExternalStorageDirectory().getAbsolutePath()
                
+ "/test/" + System.currentTimeMillis() + ".jpg");
        
file.getParentFile().mkdirs();

        
//改变Uri  com.xykj.customview.fileprovider注意和xml中的一致
        
Uri uri = FileProvider.getUriForFile(this, 
"(你的包名).fileprovider", file);
        
//添加权限
        
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);

        
intent.putExtra(MediaStore.EXTRA_OUTPUT, uri);
        
startActivityForResult(intent, REQUEST_CAMERA);
    }

你可能感兴趣的:(Android,Studio)