When I try to use Glide to "open" images from url, it gives me error. Error in the logcat
Here's my code :
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" />
And there are many more of these....