I am building a simple java/android application, and am trying to change the value of a string (which is used as the text of a button) stored in the resources file.
Whenever I try to change the the value (using R.string.), I get an error. This is because in this file (the R.string one), the variable is "final". Whenever I try to edit the file, it reverts it to the original version.
If there a way to stop this string being final, or is there another way to pass values for the text property of something like this?
Ris auto-generated, don't edit it. – Dave Newton Feb 7 '12 at 18:41