当我尝试使用 Glide 从网址“打开”图片时,它会给我错误。 logcat中的错误
这是我的代码:
String a = "https://i.imgur.com/v0PuwCG.png";
home_ib1_24_hours_to_live = (ImageButton)findViewById(R.id.home_ib1_24_hours_to_live);
Glide.with(Home.this)
.load(a)
.centerCrop()
.fitCenter()
.diskCacheStrategy(DiskCacheStrategy.NONE)
.into(home_ib1_24_hours_to_live);
<ImageButton
android:id="@+id/home_ib1_24_hours_to_live"
android:layout_width="98dp"
android:layout_height="155dp"
android:background="@android:color/transparent"
android:scaleType="fitCenter" />
还有更多这些......