NFLeo / Matisse-Kotlin

为方便定制UI 改自知乎Matisse 裁剪、UI修改。Kotlin、Androidx
Apache License 2.0
167 stars 22 forks source link

Android 11无法拍照 #31

Open Carlos2927 opened 4 years ago

Carlos2927 commented 4 years ago

测试设备:Google Pixel 3A 原因:MediaStoreCompat.dispatchCaptureIntent()中captureIntent.resolveActivity(context.packageManager) != null为false

PontonMao commented 3 years ago

manifest中添加

<!-- 1. 软件可见性适配方案 -->
<!-- the new restrictions on "package visibility" introduced in Android 11. intent.resolveActivity returns null.-->
<queries>
    <!-- Browser -->
    <intent>
        <action android:name="android.intent.action.VIEW" />
        <data android:scheme="http" />
    </intent>
    <!-- Camera -->
    <intent>
        <action android:name="android.media.action.IMAGE_CAPTURE" />
    </intent>
    <!-- Gallery -->
    <intent>
        <action android:name="android.intent.action.GET_CONTENT" />
    </intent>
</queries>
pinguoooo commented 2 years ago

遇到同样的问题,太感谢了