I want to access a resource like a String or a Drawable by its name and not its int id.
Which method would I use for this?
|
|
It will be something like:
Make sure you don't have the If that doesn't work, you can always use a context's
Where Update: If it's the name you want, the Update 2: The
Which returns the integer of the specified resource name, type & package. |
|||||||||||
|
|
If I understood right, this is what you want
Where "this" is an Activity, written just to clarify. In case you want a String in strings.xml or an identifier of a UI element, substitute "drawable"
I warn you, this way of obtaining identifiers is really slow, use only where needed. Link to official documentation: Resources.getIdentifier(String name, String defType, String defPackage) |
||||
|
|
|
||||
|
|
|
I would suggest you using my method to get a resource ID. It's Much more efficient, than using getIdentidier() method, which is slow. Here's the code:
|
|||
|
|