I'm working on an Android app. It pretends to be for many countries, so I need to change some icons, and "drawables" according to the user's country that has logged-in to the app like user's country Mobile Operators, maybe country's flag, etc.
I was planing to get those restfully through an URL on the web service (using Volley).
But, talking about Android's multiple screen densities, I don't know if in this case is "valid" to get ONE single image size from the service to put it on the app, or depending on the device's screen density then request the respective images to the server (if it is a good practice).
How have you proceeded on these cases? Any comment I will really appreciate, thanks!!