Reputation: 974
I have folder for example 'values-ru/strings'.
How I can override few strings by setting it?
for example i have:
<str: "StringA":"first">
<str: "StringB":"second">
<str: "StringC":"third">
I need only if enabled my setting:
<str: "StringA":"zero">
<str: "StringB":"second">
<str: "StringC":"null">
Upvotes: 0
Views: 65
Reputation: 889
No way!, String files(String.xml) are kind of static, You can read but You can not modify at run time!. you may consider using string formater, If your requirement meets.
Upvotes: 1