I have got in my strings.xml
a string with translations:
default: <string name="help">Help</string>
values-de: <string name="help">Hilfe</string>
values-it: <string name="help">Aiuto</string>
let's say my device is in Italian. My string will look like
Aiuto
let's say I've got a Button
below the TextView
where "Aiuto" is displayed.
When I press the button I need the string to reset to it's default value, so in this case from
"Aiuto" to "Help"
Is there any way I can do this programatically?