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?

link|improve this question

6  
Don't change the value of the string, change the button's text value. R is auto-generated, don't edit it. – Dave Newton Feb 7 at 18:41
@Dave - make this an answer – KevinDTimm Feb 7 at 18:43
feedback

4 Answers

up vote 1 down vote accepted

You are not able to modify the R file directly (it is auto-generated as part of the build process).

If you want to change the label of a button, you could set it in the code like this:

myButton.setText(R.string.myString)

if you would like to change it to a different string, you could always just set it to another predefined String like this:

myButton.setText(R.string.myOtherString)

The R class will automatically make references to Strings from your strings.xml file (which should be in the res\values folder)

link|improve this answer
Thanks for that. I now have R.id.textView1.setText("4");, but I get this error: "Cannot invoke setText(int) on the primitive type int. Thanks – ACarter Feb 7 at 19:02
You need to resolve your button first: TextView tv = (TextView) findViewById(R.id.textview1); tv.setText("4"); You need to do it in 2 steps. – Booger Feb 7 at 19:05
feedback

Don't change the value of the string, change the button's text value.

R is auto-generated, don't edit it.

link|improve this answer
Thanks, but how do I change the button's text value? I'm a bit of a n00b here. – ACarter Feb 7 at 18:49
1  
@ACarter pass a different string to setText(). – Matt Ball Feb 7 at 18:55
@ACarter What Matt said; see the setText() docs for details. – Dave Newton Feb 7 at 19:04
feedback

Resources are static. Period. And R/Class is generated from your xml resource declarations. If you like to store editable values use preferences.

link|improve this answer
feedback

R.java is a autogenerated file you can not change it.even if you will delete that it will be recreated.

If you want to change the text of the button Set the android:text="@string/yourstringinresourcefile";

property of the button in your xml file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.