Questions tagged [android-glide]

Android Glide is a image loading library for Android that supports loading, caching, fetching, decoding, and displaying of images, animated GIFs, and video stills. Use this tag for questions involving the Glide library making sure to provide the version of the library used and the specific feature like [caching], [loading], or [animated-gif].

2336 questions
0
votes
1 answer

I am loading image in Glide but Glide not working if url contains space

I am loading image in glide having spacing in it but facing some issue. I remove white spaces but image not loaded. image.replaceAll(" ", "%20"))
0
votes
0 answers

Glide: error image is not showing while using thumbnail

I'm using the 3.7.0 version of Glide. I’m using a thumbnail to show the gif as a loading image and error method to show an error image in the case of the network issue. But, imageview is not showing the error image. It is only showing the…
Parag Rane
  • 179
  • 4
  • 15
0
votes
0 answers

at com.bumptech.glide.util.Preconditions.checkNotNull , the virtual phone crashes. How to solve this?

Here's my Question: I'm in the middle of a tutorial on how to create mobile applications and I'm encountering some real difficulties. Everything was working fine until I added the following line of code to allow me to access an online…
0
votes
0 answers

android svg rendering with linked bitmap

I want to display an SVG file from a web server in an Android ImageView. For this I use the classes from the Glide example on Github. In my SVG file there is a bitmap linked with the tag. The ImageView shows the SVG without the linked…
JonTravo
  • 25
  • 5
0
votes
1 answer

Glide is not showing images

This one works in activity.this one load the image from firebase to recyclerview: Glide.with(PURPLE_MARKET.this).load(productsModel.getImage()). placeholder(R.drawable.loading).into(holder.producticon); And in a…
0
votes
1 answer

Glide generates ImageView with size 0

I am building a simple Android app using Glide. The feature is simple: the app sends a network request and gets back a list of image URLs. Then using Glide and RecyclerView, I want to display the images. The way I wish to display the images is that…
seemuch
  • 233
  • 1
  • 2
  • 11
0
votes
1 answer

How do I use Glide for multiple downloads?

I have this piece of code, this is my first use of Glide, I still do not understand how to do it differently try { Glide.with(this@TestBitmapActivity) .asBitmap() …
ripusrupus
  • 11
  • 2
0
votes
2 answers

Can not load images with glide in recyclerview (data for recyclerview is fethced using retrofit)

My target is to fetch multiple image urls using an API and load those images in a 2d recyclerview. I'm using retrofit for fetching data and Glide for displaying the images in the recyclerview. Apparantly, there is no issue with fetching the urls.…
ganjaam
  • 1,030
  • 3
  • 17
  • 29
0
votes
0 answers

Glide : Error decoding from Microsoft Graph API

I want to display Image item (PNG) I received from Microsoft Graph API by using Glide then this error happen D/skia: --- Failed to create image decoder with message 'unimplemented' D/skia: --- Failed to create image decoder with message…
Plai
  • 21
  • 7
0
votes
1 answer

Display images in GridView with Glide

How can I use Glide image loading with GridView? I have Card class with image URL, name and description. I want to display it in GridView. In documentation is writte: Glide.with(fragment) .load(myUrl) .into(imageView); But how can I define…
Beacze
  • 534
  • 3
  • 8
  • 24
0
votes
0 answers

Issue in loading firebase image using Glide

I am trying to show firebase image into the notification which requires a bitmap image to be shown. However i am getting exception. However i am able to show the same image using imageView using Glide library only. Here are the two codebase. Code…
Rajan Phatak
  • 524
  • 8
  • 24
0
votes
1 answer

Download image using Glide And bitmap And Share

i want to share image which is taken from my website using json, i need to download image and than share , currently i am using this method but its not working , i am not familiar with Glide and Bitmap, Please Help here is my code : …
0
votes
2 answers

Thumbnail stays blank in RecyclerView (Android). Am I using Glide correctly?

I am working on an Android app that displays a list of books that match a search term. I am using the Google Books API. From the API I get a list of the following items: title, author, publication date and URI for a small thumbnail to display. I am…
0
votes
1 answer

File exist but glide does not show anything

This is my code: String mmimg = Environment .getExternalStorageDirectory().toString()+arrPictures.get(0).getPath(); Log.e("mmimg",mmimg);…
S.M_Emamian
  • 17,005
  • 37
  • 135
  • 254
0
votes
1 answer

My sharedPreference always returns default value

I know that this question was asked many time and sorry for repeating it but I simply don't know what to do. I am using Glide for loading images from server into my RecycleView and it's listener so when my images are loaded, it should save int 1 and…