我想知道 - 有没有办法在Activity之外访问android资源和/或资产文件(或来自任何其他文件夹的文件)(而不传递上下文)?
没有上下文无法访问:
getResources().getIdentifier("resource_name", "drawable", getPackageName());
getAssets().open("file_in_assets_folder_name");
如果不在Activity中,则抛出异常:
try {
Class class = R.drawable.class;
Field field = class.getField("resource_name");
Integer i = new Integer(field.getInt(null));
} catch (Exception e) {}
还尝试了以下,但它抱怨文件不存在(这里做错了什么?):
URL url = new URL("file:///android_asset/file_name.ext");
InputSource source = new InputSource(url.openStream());
//exception looks like so 04-10 00:40:43.382: W/System.err(5547): java.io.FileNotFoundException: /android_asset/InfoItems.xml (No such file or directory)
答案 0 :(得分:5)
如果文件夹包含在项目构建路径中,您可以在android.content.Context外部使用ClassLoader访问文件,例如,从POJO(如果您不想要的话)传递android.content.Context的引用:
String file = "res/raw/test.txt";
InputStream in = this.getClass().getClassLoader().getResourceAsStream(file);
要在项目构建路径中添加文件夹,请右键单击您的项目 - 构建路径 - 配置构建路径,将您的文件夹(例如,资产,如果使用以后的SDK版本)添加为构建路径中的Source文件夹。
查看我在here之前回答的类似问题。
答案 1 :(得分:1)
Android框架在编译你的app时创建静态类调用:
your.namespace.project.R
你可以静静地称这个类为:
your.namespace.project.R.string.my_prop
this.context.findViewById(your.namespace.project.R.id.my_id_prop);
也许您可以通过这种方式访问动态资源:
Resources res = this.context.getResources();
int id = res.getIdentifier("bar"+Integer.toString(i+1), "id", this.context.getPackageName());