ahodder
ahodder

Reputation: 11439

Is it possible to have more than one string resource file in Android?

I have my primary string resource file for android, and it is quite full (with no end in sight). So, I was hoping to do some house cleaning and move some string into their own resource file. Is this possible?

I know that one can have something like string-en or string-de, but is it possible to maybe have a resource file such as string-errors?

Upvotes: 25

Views: 8034

Answers (1)

David Conrad
David Conrad

Reputation: 16359

Apparently so. I just took a small app of mine, created a new XML file, values/labels.xml, and moved some of my string resources from values/strings.xml into it. I made no other changes to the app; it still worked fine.

Upvotes: 37

Related Questions