I'm using the Ignition class RemoteImageView to asynchronously download and show images. RemoteImageView is a subclass of ImageView.
I'm downloading 600x600 images and showing them at various sizes... 260x260, 100x100, etc. I notice the image seems fuzzy, less crisp, with artifacts in it.
I don't know much about image rendering, but I notice when I look at the same images in Google Chrome and try zooming out in the browser, it will momentarily have that fuzzy look to it, and then the lines will straighten, the image becoming less blurry and crisp once more--so I'm guessing there's some kind of rendering effect using to show images that I'm not doing with my ImageView.
The images come off a server; I cannot change those original images or have different sizes sent to me.
What else can I do--hopefully something that doesn't add a lot of inefficiency, as sometimes I need to show dozens of these small images on the screen at once in a ListView?