Android 11 (R) 在查询 ACTION_IMAGE_CAPTURE 的 Intent 时返回空列表(无法查询到相机)

设备:模拟器像素 3a - Android 11
代码:

final List cameraIntents = new ArrayList();
    final Intent captureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
    final List listCam = 
    context.getPackageManager().queryIntentActivities(captureIntent, 0);

使用时:

targetSdkVersion 30
compileSdkVersion 30

listCam 大小为 0
当更改为:

compileSdkVersion 29

listCam 大小为 1 - 应该是。
使用以下代码:

val captureIntent = Intent(MediaStore.ACTION_IMAGE_CAPTURE)
    baseActivity.startActivity(captureIntent)

最佳答案

Android 11 改变了应用查询和与其他应用交互的方式。

The PackageManager methods that return results about other apps, such as queryIntentActivities(), are filtered based on the calling app's  declaration.

所以你需要声明在您的 AndroidManifest.xml :


    
        
            
        
    
    ...

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