I am trying to implement two different versions of the same application, the only difference being the color scheme. How would I go about displaying different drawables based on the version?
For example, let's say I have a Blue version and a Red version. I would like to use the same source code for both but have an easy way to convert between the two color schemes. I am confused on how I would tell Android that I want to use the Blue version (or Red) and have it access files perhaps in resources/drawables/Blue or resources/drawables/Red. I found the link below, but I don't understand how I can implement this using just one package. Is it possible?
Dynamically change the name of the resource file to be used?