0

我在 res/raw 中有一个原始资源,但我无法使用它找到它

context.getResources().openRawResource(R.raw.mystore);

但它是在 R 文件中生成的

public static final class raw {
    public static final int mystore=0x7f040000;
}

我尝试清理,刷新它,重新启动 Eclipes,但没有任何效果。

4

2 回答 2

1

确保您导入yourpackage.R而不是android.R

于 2013-02-19T07:57:44.297 回答
0

试试这个。

InputStream is = getResources().openRawResource(R.raw.mystore);

于 2013-02-19T07:57:11.213 回答