Is there any Eclipse plugin that takes strings from code and puts them in strings.xml? I found \"Externalize strings\" function in Eclipse, but I don\'t know how to get it t
Use Refactor in Eclipse:
The string will be moved to strings.xml and the call to getContext().getString(R.string.my_string) generated.
getContext().getString(R.string.my_string)