I mean the name, not it's values, for example this:
<resources>
<string name="magical_value_1">Lapin</string><br>
<string name="magical_value_2">Poulet</string><br>
<string name="magical_value_3">Saucisse</string><br>
</resources>
if i use String value1 = getResources().getString(R.string.magical_value_1);
the result it's going to be Lapin, but I need a way to get "magical_value_1"
(not Lapin) in a variable. I need to do this because of languages, I have a lot languages in my app,and their values changes, but the name(magical_value_1) it's the only thing that remains(regardless the language). thanks