I am trying to use setText method for a TextView widget and fill it with a string resource as you can see in the code below:
TextView texthdlr = (TextView)findViewById(R.id.textView1);
texthdlr.setText(R.string.someText);
strings.xml:
<string name="someText">Some Text</string>
but instead of showing someText value, it shows random numbers. (e,g 2131361816)