数据库中的android可绘制标识符

发布于 2024-12-02 20:49:19 字数 82 浏览 0 评论 0原文

在数据库中存储可绘制标识符的最佳方法是什么? by 是 id 吗?但如果它生成了,它可能会改变,该怎么办?我一直在四处寻找,但找不到有关它的完整信息。

what is the best way to store a drawable identifier in a database? by is id? but if it is generated it can change, what to do? I've been looking arround but can't find complete information about it.

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

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

发布评论

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

评论(1

冷清清 2024-12-09 20:49:19

为什么你想在数据库中存储可绘制对象,你可以简单地创建一个包含 R.java 类中所有 id 的 Integer[] 数组,

就像

Integer[] myDrawables = new Integer[]{
R.drawable.xdrawable,
R.drawable.ydrawable,
R.drawable.zdrawable,
}

现在访问它们变得更加容易。我通常在公共静态范围内定义它们,以便可以从任何地方访问它们

Why would you want to store drawable in database , you can simply create a Integer[] array containing all the ids from R.java class

like

Integer[] myDrawables = new Integer[]{
R.drawable.xdrawable,
R.drawable.ydrawable,
R.drawable.zdrawable,
}

now to access them becomes much easier. I usually define them in public static scope to make them accessible from anywhere

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文