Hi, I'm using ImageCell
s in my TableView
displaying avatar images I've downloaded. On iOS, I just make sure my images end in @2x
and so on, and they display fine on high-DPI displays. But on Android, they're twice the size they should be since its default assumption is that images were intended to display at 100 DPI or thereabouts.
Changing it to download from a URL instead of referencing a local file doesn't help, because it still doesn't know offhand whether the images are high-DPI-aware, so it guesses wrongly that they're not.
I'm also guessing that I can't really download image-cache-type images directly to the Resources/drawable-??dpi folders...
Any ideas? Thanks!