Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dynamic Resource Loading Android

Tags:

android

I'm trying to find a way to open resources whose name is determined at runtime only.

More specifically, I want to have a XML that references a bunch of other XML files in the application apk. For the purpose of explaining, let's say the main XML is main.xml and the other XML are file1.xml, file2.xml and fileX.xml. What I want is to read main.xml, extract the name of the XML I want (fileX.xml), for example, and then read fileX.xml. The problem I face is that what I extract form main.xml is a string and I can't find a way to change that to R.raw.nameOfTheFile.

Anybody has an idea?

I don't want to:

  • regroup everything in one huge XML file
  • hardcode main.xml in a huge switch case that links a number/string to the resource ID
like image 434
Jason Rogers Avatar asked Sep 06 '10 04:09

Jason Rogers


People also ask

What is res Android?

The res/values folder is used to store the values for the resources that are used in many Android projects to include features of color, styles, dimensions etc. Below explained are few basic files, contained in the res/values folder: colors.

What are default resources in Android?

Default resources are items that are not specific to any particular device or form factor, and therefore are the default choice by the Android OS if no more specific resources can be found. As such, they're the most common type of resource to create.

What is the use of resource ID in Android?

drawable for all drawable resources) and for each resource of that type, there is a static integer (for example, R. drawable. icon ). This integer is the resource ID that you can use to retrieve your resource.


2 Answers

I haven't used it with raw files or xml layout files, but for drawables I use this:

getResources().getIdentifier("fileX", "drawable","com.yourapppackage.www"); 

to get the identifier (R.id) of the resource. You would need to replace drawable with something else, maybe raw or layout (untested).

like image 147
Mathias Conradt Avatar answered Sep 20 '22 23:09

Mathias Conradt


I wrote this handy little helper method to encapsulate this:

public static String getResourceString(String name, Context context) {     int nameResourceID = context.getResources().getIdentifier(name, "string", context.getApplicationInfo().packageName);     if (nameResourceID == 0) {         throw new IllegalArgumentException("No resource string found with name " + name);     } else {         return context.getString(nameResourceID);     } } 
like image 23
E-Riz Avatar answered Sep 20 '22 23:09

E-Riz