In my android app, I have a large string resource xml file. I want to make reference and reuse declared resources values within String values. Is it possible to have the R
Well, I don't think this is possible. Because once the resources are allocated android won't allow us to change them dynamically in the air. Instead you can try having your Strings in a separate class and change them as you run through your code.