I'm having trouble using the refactor feature in eclipse (Indigo on Win7 64) to move my hard coded strings to the string.xml file.
Automatic Code Generation for Strings.xml from Eclipse
It creates the entry in string.xml ok but when it builds the appropriate code, part of the code can be duplicated and the resulting code is nonsense. For example:
...setText("Inbox")
becomes:
...setText(R.string.inboxg.inbox)
instead of
...setText(R.string.inbox)
This behavior varies depending on the length of the line and what is being replaced.
Anyone seen this before, know of a fix?