android-glide Questions

6

Solved

I have a RecyclerView that loads images from URLs using Glide. Now the URLs are retrieved from Firebase using pagination as you can see below. The issue is that when the MainActivity (which contain...

9

I use Glide library inner custom adapter view in my apps. But I have Error : "You must not call setTag() on a view Glide is targeting" This part of my code : @Override public View getView(in...
Stative asked 17/1, 2016 at 0:12

29

Solved

So, anybody know how to display an image with rounded corners with Glide? I am loading an image with Glide, but I don't know how to pass rounded params to this library. I need display image like f...
Microorganism asked 13/8, 2014 at 5:43

3

I'm using Glide library to load GIF files into my app. Here is what I implemented: Glide.with(context) .load(stringImage) .asGif() .diskCacheStrategy(DiskCacheStrategy.SOURCE) .into(postImage)...
Sammons asked 22/6, 2017 at 15:45

15

Solved

I am using relativelayout to set an image.Why I hadn't using imageview means, inside relativelayout image, I am setting icons. I dont know what is the issue exactly in glide.I have posted the stac...
Reata asked 23/8, 2016 at 6:21

10

Solved

I'm using Glide to load some images asynchronously into some of my ImageViews, and I know it can handle images like PNG or JPG as it can handle SVG. Thing is, As far as I know, the way I load tho...
Bilicki asked 19/2, 2016 at 14:40

5

I'm monitoring my web calls with Charles. I have a GlideModule changing cache folder by overriding applyOption(...) like this : @Override public void applyOptions(Context context, GlideBuilder ...
Bust asked 10/2, 2016 at 14:38

2

Solved

I have an adapter class that is being used to populate the recyclerview item with cardviews. This RecyclerView is located under a fragment. Inside this adapter, I am trying to bind an image to a im...
Hutch asked 28/4, 2020 at 14:7

11

Solved

I am trying to load an image using glide but somehow I can not load the image using glide. As it shows following error: Failed to find GeneratedAppGlideModule. You should include an annotationPr...
Historied asked 18/4, 2018 at 13:57

5

I tried to load PNG image form drawable into ImageView, and set tint color for this ImageView with below code ⇒ it's working: imageView1.setImageResource(R.drawable.pngFile); imageView1.setColorFi...
Cloakroom asked 15/5, 2017 at 6:13

7

Solved

Hi I'm using Glide to load image from my drawable folder and all works fine, this is my code : Glide.with(this).load(R.drawable.my_drawable_image_name).into(myImageView); I'm wondering if there is...
Colier asked 17/3, 2017 at 22:27

7

Solved

I have an image contents byte[] form. But when i load them through Glide then broken images are shown. what I'm doing is shown below. Glide.with(context) .load(imageByteArray) .asBitmap() .plac...
Podesta asked 4/1, 2016 at 10:18

6

Solved

I migrated the server from HTTP to HTTPS I have used self-signed certificate to send network requests with HttpUrlConnection and it worked but for image loading it is not working as I have used Gli...
Dreddy asked 13/12, 2016 at 6:0

15

Solved

Downloading a URL into an ImageView is very easy using Glide: Glide .with(context) .load(getIntent().getData()) .placeholder(R.drawable.ic_loading) .centerCrop() .into(imageView); I'm wonde...
Liturgical asked 10/12, 2014 at 5:40

6

Solved

I have this problem - just for testing purposes I added ParseFile to one of ParseObject from received list. Instead of showing it only in that row it shows every 4-5 rows, sometimes more, sometimes...
Impatient asked 21/9, 2015 at 23:49

10

Solved

I am using Glide 3.7.0 with RecyclerView. The item view always blinks when refreshing (calling notifyDataSetChanged). Here is my code: Glide .with(context) .load(filepath) .diskCacheStrategy(D...

11

I have an app that use android-maps-utils and glide for marker icons. I got an error report using Firebase crash reporting which I can't track in source code because gms.maps.model.Marker.setIcon i...
Lynching asked 27/1, 2017 at 20:27

7

Using Glide 4 in combination with okhttp3 and a LibraryGlideModule: @GlideModule public final class MyGlideModule extends LibraryGlideModule { @Override public void registerComponents(Context c...
Had asked 30/8, 2017 at 12:9

3

Solved

I'm using Glide to load images. On my app, I'm using the following sample to load an SVG image into my ImageView that is inside a CardView. GenericRequestBuilder<Uri, InputStream, SVG, PictureDr...
Tennison asked 19/2, 2016 at 19:2

5

I have an Android project where Glide v4 is one of its dependency. This project has another dependency, let's call it dependency A , where it depends on Glide v3 instead. I don't know if it matter...
Splore asked 17/7, 2018 at 6:46

18

I am trying to load an image into imageView through Glide. But the image is not loaded - I get an error. I'm using the following code GlideApp.with(context) .load(itemData.getThumbnailUri()) .p...
Glutathione asked 2/4, 2019 at 10:57

9

Solved

Can I load a spinner in placeholder with rotating animation until the image is loaded using Glide? I am trying to do that using .placeholder(R.Drawable.spinner) no animation is coming up? It woul...
Anis asked 10/2, 2016 at 2:34

4

I just tried to use glide recyclerview integration and read a document about it and it said: "The RecyclerView integration library makes the RecyclerViewPreloader available in your application. Rec...

19

Solved

I am using Glide in one of my projects to show images from files. Below is my code of how I am showing the image: Glide.with(DemoActivity.this) .load(Uri.parse("file://" + imagePath)) ....
Genuflect asked 30/10, 2015 at 19:0

9

I have downloaded Glide from Github and wanted to test the program on Android studio. But once i Clean the project, i have this error Information:Gradle tasks [clean] fatal: Not a git repository ...
Rodin asked 27/1, 2016 at 5:50

© 2022 - 2025 — McMap. All rights reserved.