Android - 从数据库创建可绘制数组

发布于 2024-12-26 18:24:44 字数 247 浏览 0 评论 0原文

我在数据库中有一个表,其中包含图像名称:pic1、pic2、pic3 等... 从数据库检索此表时,我需要根据图片名称创建一个可绘制数组,例如:

private Integer[] pics = {
  R.drawable.pic1, R.drawable.pic2,R.drawable.pic3}

实际图像位于应用程序的可绘制文件夹中。

我怎样才能做到这一点?

10 倍!

I have a table in the database which contains names of images: pic1, pic2, pic3 etc...
When this table is retrieved from the db I need to create an array of drawbles from the names of the pics eg:

private Integer[] pics = {
  R.drawable.pic1, R.drawable.pic2,R.drawable.pic3}

The actuall images are in the drawable folder of the application.

How Can I achieve that?

10X!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

伴我心暖 2025-01-02 18:24:44

您可以使用Resources.getIdentifier():

Resources res = context.getResources();
int id = res.getIdentifier("pic1", "drawable", context.getPackageName());
assert id == R.drawable.pic1;

You can use Resources.getIdentifier():

Resources res = context.getResources();
int id = res.getIdentifier("pic1", "drawable", context.getPackageName());
assert id == R.drawable.pic1;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文