1

Good morning friends,

Is it possible to modify the values of the string.xml folder?. I try to modify Spanish and English string.xml from java code, in the same way that I extract the information.

String text = getString(R.string.animal);

how to modify a string.xml?

3
  • been asked before: stackoverflow.com/questions/5233015/… Commented Jan 13, 2019 at 9:54
  • Simple answer: No Commented Jan 13, 2019 at 9:57
  • thanks for the reply Commented Jan 13, 2019 at 15:22

1 Answer 1

4

Well, This is not possible in android at all.

Android does not support changing the resources dynamically from java, but it supports getting values from remote such as Firebase Remote Config.

Sign up to request clarification or add additional context in comments.

1 Comment

thanks for the reply