如何在本机代码中从 res/drawable 文件夹访问图像资源?
我一直在寻找某种方法来访问资源,例如 图像存储在 res/drawable 文件夹中。其实我正在寻找一些 过程类似于我们的Java代码,即访问保存在 res/drawable 来自 R.drawable 类。有没有类似的东西 本机代码也提供技术吗?如果没有那么应该有 访问这些资源的一些替代方法,请告诉我它是什么。 寻求早日答复。提前致谢。 谨致问候, 阿图尔·普拉卡什·辛格
I have been looking for some method in order to access resources like
images stored in res/drawable folder. Actually I am searching for some
procedure similar to our Java code i.e. accessing resources saved in
res/drawable from the R.drawable class. Is there any thing similar
technique provided in native code also? If not then there should be
some alternative to access these resources, kindly tell me what is it.
Looking for an early reply. Thanks in advance.
With Regards,
Atul Prakash Singh
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为您应该将您尝试访问的资源的
FileDescriptor
传递给本机过程。I think you should pass a
FileDescriptor
of the resource you are trying to access to the native procedure.通过向其传递字符串来创建 Uri。像这样:
Create a Uri by passing a string to it. Like this: