为什么android图像使用位图来显示?

时间:2017-06-08 00:37:04

标签: android bitmap

难道不是位图非常大且效率低吗?

Android图像视图如何使用它们呢?

Uri new_picture_uri = data.getData();

try
{
    Bitmap new_picture_bmp = MediaStore.Images.Media.getBitmap(getContentResolver(), new_picture_uri);

    DISPLAY_VIEW.setImageBitmap(new_picture_bmp);
}
catch (IOException exception)
{
    exception.printStackTrace();
}

1 个答案:

答案 0 :(得分:1)

位图存储效率低,但显示效果很好。 Android将更多节省空间的格式(png,jpg等)转换为位图对象以进行操作和显示。