1

在 Android 中,我想通过从数据库中检索图像来设置背景图像。我已经创建了数据库并将图像作为 BLOB 放入。数据库在我的资产文件夹中,应用程序可以成功访问和查询数据库(但这可能是因为我还没有访问图像)。但现在我不知道从这里去哪里。我想我已经完成了类似的代码:

bgview = (View) findViewById(R.id.bg_display);
bgview.setBackgroundResource(bgimage);

但我不知道如何开始它......

4

2 回答 2

1

只需在数据库中存储图像的路径而不是图像,您可以检索路径并将其设置为背景。使用它您可以摆脱转换为字节的麻烦。

于 2012-04-28T07:35:19.407 回答
1

你可能会创建

InputStream is = new ByteArrayInputStream(TheBytesOfTheBlobYouGotFromDB);

将其保存到文件中

尝试 { OutputStream out = new FileOutputStream(new File(FileName));

int read = 0;
byte[] bytes = new byte[1024];

while ((read = is.read(bytes)) != -1) { out.write(bytes, 0, read); }

is.close();
out.flush();
out.close();
} catch (IOException e) {}

然后使用解决方案将文件设置为背景: 将位图作为视图的背景

Matrix Mat = new Matrix();

/// FileName is the file where you saved the 'is'
Bitmap Source = BitmapFactory.decodeFile(FileName);
Bitmap Destination = Bitmap.createScaledBitmap( Source, DisplayWidth, DisplayHeight, true );

Source = Bitmap.createBitmap( Destination, 0, 0, Destination.getWidth(), Destination.getHeight(), Mat, true );

/// Use the 'Source' here
bgview.setBackgroundResource(Source);
于 2012-04-27T22:35:43.723 回答