从android测试项目中的res文件夹加载文件

时间:2014-04-28 14:09:50

标签: android android-testing

在测试用例中,我需要在文件夹

中加载我的testproject中可用的图片
/myproject/res/drawable-hdpi/attachment.png

我已经尝试使用InstrumentationTestCase并将文件存储在/ res / raw文件夹中并加载它,但R文件不包含我的attachment.png

Context testContext = getInstrumentation().getContext();
InputStream input = testContext.getResources().openRawResource(R.raw.?????????)

任何想法?

感谢

1 个答案:

答案 0 :(得分:1)

你不应该使用raw来保存图像,使用drawable o asset;)

Difference between /res and /assets directories

Android images in /assets or res/raw