在我的 android 应用程序中,我正在从相机捕获图像并通过滑行加载它。在某些设备中它可以正常工作,但某些设备(如 LG Q6、MI note 4)无法正常加载。请检查我的代码并给出一些解决方案。
在 Kotlin 文件中:
val imageURL = "/storage/emulated/0/Pictures/1537536635333.jpg"
Glide.with(activity!!)
.load(imageURL)
.into(cameraThumbnailIV)
在 XML 文件中:
<ImageView
android:id="@+id/cameraThumbnailIV"
android:layout_width="60dp"
android:layout_height="60dp"
android:scaleType="centerCrop"
android:src="@drawable/photothumbnail" />