2023-02-22

image uploaded to internet is not loaded by Glide in Kotlin

I do the work in adobe illustrator, and load this file to internet by many sites.

I use svgur to convert from svg to https.

And I got this image address : https://svgur.com/i/qW7.svg

This file is well open in Internet.

And I laod this file by Glide.

    val missionImage = view?.findViewById<ImageView>(R.id.missionImage)

        Glide.with(context)
            .load(missionList[position].missionImage)
            .into(missionImage!!)

But nothing comes out.

missionList[position].missionImage is this address.

And I check with other random image that I pick from Google is well came out in my app.

Which means this code has no problem.

I tried with other websites other than svgur, like ImgBB etc.

And tried not also with svg but also with png.

But of course image is not loaded in my app.

What is the problem?



No comments:

Post a Comment