I'm developing an app and I want to display ArrayList
in GridView
for that I use an adapter the object includes 3 Strings.
number, hint, imageURL
I want to put each object in the GridView
I successfully put the number and hint because it's just setText
but with the ImageURL
, I want to display Image
in an ImageView
but I can't figure out why my program doesn't work
I'm using Glide.with(context).load(roadSign.getImageURL()).into(SIGN_IMAGE_VIEW);
The function is in the Adapter class
I don't think the problem is in the function I think something is wrong with the Image
so I'm adding everything related
https://www.codepile.net/pile/Qe1XpjG9
If you need any more information please comment below