确认您是否已经申请了相应的权限(例如读取外部存储器的权限)。
检查您是否正确设置了Matisse库。在您的AndroidManifest.xml文件中添加以下内容:
< activity android:name="com.zhihu.matisse.ui.MatisseActivity" />
< activity android:name="com.zhihu.matisse.ui.matisse.MatisseBottomSheetActivity" />
< provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
< meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths"/>
provider>
implementation 'com.github.bumptech.glide:glide:4.7.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
Matisse.from(MainActivity.this)
.choose(MimeType.allOf())
.theme(R.style.Matisse_Dracula)
.countable(false)
.maxSelectable(1)
.imageEngine(new Glide4Engine())
.forResult(REQUEST_CODE_CHOOSE);