there is way to make refactoring on a layout file tag? E.g.:
Strings.xml
Using xml Syntax Highlighting
- <string name="layout_value"> 50 </string>
Parsed in 0.000 seconds, using GeSHi 1.0.8.4
and there is a code re make reference to this value. E.g:
Using java Syntax Highlighting
- int code = R.string.layout_value;
Parsed in 0.029 seconds, using GeSHi 1.0.8.4
If I change the xml property name manually the code will show a compilation error bacause "layout_value" will become an undefined symbol. Can I refactor xml properties?
Thanks





