0

I need to put value of strings.xml from android java class to get it from all the application activity

<resource>
     <string name="x">sss</string>
</resource>
Raghunandan
  • 132,755
  • 26
  • 225
  • 256

1 Answers1

0

This task is can't be done when using android because the xml strings it's final file compiled when running the application

A.Ch
  • 1