Android - 从数据库创建可绘制数组
我在数据库中有一个表,其中包含图像名称: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用Resources.getIdentifier():
You can use
Resources.getIdentifier()
: