In my Android application I have some arabic strings stored in the strings.xml file.
when I use the string from the layout xml
via:
android:text="@string/EMAIL_LABEL
It works fine, but when I call it from java code
like:
emailLabel.setText(R.string.EMAIL_LABEL)
it shows me only numbers instead
Anyone can advice please?
Thanks in Advance