How to change strings.xml file at runtime

I get localized data only dynamically.

Is there any way to update the file strings.xmlat runtime on Android? Is it possible to add a new line to a file at runtime?

+5
source share
1 answer

Is it possible to add a new line to a file at runtime?

No. You can create and maintain a translation database. Add new translations on the fly to the database and read the values ​​from there.

+5
source

All Articles