我想转换
byte[] image = cursor.getBlob(5);
Bitmap bit_image = getImage(image);
byte[]
或Bitmap
成R.drawable.picture
。
我需要它是integer
(int
而不是int[]
),因为我的自定义列表视图只接受int
。
list_view_class.add(new List_view_class(R.drawable.picture,text);
答案 0 :(得分:5)
你无法做你想做的事。
R.drawable
或R.string
等不是资源本身,而是对应用程序中资源的引用。因此,您无法将对象的anysort转换为R
或其他内容。你可以做的是使用Bitmap
并直接显示它。