数据库中的android可绘制标识符
在数据库中存储可绘制标识符的最佳方法是什么? 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么你想在数据库中存储可绘制对象,你可以简单地创建一个包含 R.java 类中所有 id 的 Integer[] 数组,
就像
现在访问它们变得更加容易。我通常在公共静态范围内定义它们,以便可以从任何地方访问它们
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
now to access them becomes much easier. I usually define them in public static scope to make them accessible from anywhere