在使用takePhoto框架多选图片时,
takePhoto.onPickMultiple(limit); //多选上传
预览相册的图片显示灰色,无法预览,单选没有问题,可参照下列设置对AndroidManifest.xml中的application进行设置解决
<application
android:name=".MyApplication"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@mipmap/logo"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:largeHeap="true"
android:requestLegacyExternalStorage="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".MyActivity"
android:screenOrientation="portrait"></activity>
</application