I need to pass a resource ID to a method in one of my classes. It needs to use both the id that the reference points to and also it needs the string. How should I best achieve this?
For example:
R.drawable.icon
I need to get the integer ID of this, but I also need access to the string "icon".
It would be preferable if all I had to pass to the method is the "icon" string.
This is based on @Macarse answer.
Use this to get the resources Id in a more faster and code friendly way.
Example: