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?

Duck Dodgers
  • 3,409
  • 8
  • 29
  • 43
Fulano
  • 71
  • 8

1 Answers1

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.

Khalid Taha
  • 3,183
  • 5
  • 27
  • 43