I added some string
s to the strings.xml file, as the following:
<string name="29">Beaf Stake"</string>
I know that this is the way to retrieve string
s from the ressources:
getResources().getString(R.string.29);
But the problem is that I don't find this string
listed in R.string
. I imported my Project's R
as following:
import xxxx.xx.xxxx.xxx.R;
I tried restarting Eclipse with no luck, so what am I doing wrong?