在测试用例中,我需要在文件夹
中加载我的testproject中可用的图片/myproject/res/drawable-hdpi/attachment.png
我已经尝试使用InstrumentationTestCase并将文件存储在/ res / raw文件夹中并加载它,但R文件不包含我的attachment.png
Context testContext = getInstrumentation().getContext();
InputStream input = testContext.getResources().openRawResource(R.raw.?????????)
任何想法?
感谢
答案 0 :(得分:1)
你不应该使用raw来保存图像,使用drawable o asset;)