i am trying to use the strings.xml file as much as possible for constant strings but there are places where eclipse is showing me errors.
Whenever i call a method, i want to send a string from the strings.xml file but using it generates an error which says it cannot use an int instead of a string.
example: showAlert("Delete Confirmation",...) works where as this doesn't. showAlert(R.strings.delete_confirmation,....)
Does anybody know of a possible workaround for this.
Thanks.



