如何在本机代码中从 res/drawable 文件夹访问图像资源?

发布于 2024-11-26 04:37:35 字数 203 浏览 0 评论 0原文

我一直在寻找某种方法来访问资源,例如 图像存储在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

岛歌少女 2024-12-03 04:37:35

我认为您应该将您尝试访问的资源的 FileDescriptor 传递给本机过程。

I think you should pass a FileDescriptor of the resource you are trying to access to the native procedure.

无语# 2024-12-03 04:37:35

通过向其传递字符串来创建 Uri。像这样:

String s = "android.resource://[your_package]/R.drawavle.img";
Uri u = Uri.parse(s);

Create a Uri by passing a string to it. Like this:

String s = "android.resource://[your_package]/R.drawavle.img";
Uri u = Uri.parse(s);
稀香 2024-12-03 04:37:35
 getResources().getIdentifier(name,"drawable", getPackageName())
 getResources().getIdentifier(name,"drawable", getPackageName())
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文