I'm new to android developing. In my app, I have a horizontalScrollView
that contains images. Later I have been using Picasso to load images from URL. Then I heard about glide so I switched to glide and now my image loading is fast but the quality of images is too low.
code below
//load image from URL 1.1
ivImageFromURL = (ImageView) findViewById(R.id.videoconwmimage);
Glide.with(this).load("http://imgur.com/KtfpVUb.png").into(ivImageFromURL);