Bitmap - 称作位图,一般位图的文件格式后缀为bmp,当然编码器也有很多如RGB565、RGB888。作为一种逐像素的显示对象执行效率高,但是缺点也很明显存储效率低。我们理解为一种存储对象比较好。
    Drawable - 作为Android平下通用的图形对象,它可以装载常用格式的图像,比如GIF、PNG、JPG,当然也支持BMP,当然还提供一些高级的可视化对象,比如渐变、图形等。

A bitmap is a Drawable. A Drawable is not necessarily a bitmap. Like all thumbs are fingers but not all fingers are thumbs.
Bitmap是Drawable . Drawable不一定是Bitmap .就像拇指是指头,但不是所有的指头都是拇指一样.

The API dictates: API规定:

Though usually not visible to the application, Drawables may take a variety of forms: 尽管通常情况下对于应用是不可见的,Drawables 可以采取很多形式:

Bitmap: the simplest Drawable, a PNG or JPEG image. Bitmap: 简单化的Drawable, PNG 或JPEG图像. 
Nine Patch: an extension to the PNG format allows it to specify information about how to stretch it and place things inside of it.
Shape: contains simple drawing commands instead of a raw bitmap, allowing it to resize better in some cases.
Layers: a compound drawable, which draws multiple underlying drawables on top of each other.
States: a compound drawable that selects one of a set of drawables based on its state.
Levels: a compound drawable that selects one of a set of drawables based on its level.
Scale: a compound drawable with a single child drawable, whose overall size is modified based on the current level.

对比项 显示清晰度 支持透明色 支持色相色差调整 支持像素操作
Bitmap 相同
Drawable 相同

Drawable在内存占用和绘制速度这两个非常关键的点上胜过Bitmap

- Drawable和Bitmap之间可以互相转换,Drawable占用内存远小于Bitmap。

- setImageDrawable使用资源文件;setImageBitmap使用bitmap图片,该图片可能是读取本地相册,或者从资源文件转换而来。

- setImageResource()和setImageBitmap()

//setImageResource()
public void setImageResource (int resId)//占用UI thread;
// setImageBitmap()
ImageView iv;
String fileName = "/data/data/com.test/aa.png";
Bitmap bm = BitmapFactory.decodeFile(fileName);
iv.setImageBitmap(bm); //占用内存
// setImageBitmap()
Bitmap image = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
imageView.setImageBitmap(image);
// Bitmap转换成Drawable
Bitmap image = BitmapFactory.decodeFile(imgFile.getAbsolutePath());
BitmapDrawable bitmapDrawable = new BitmapDrawable(image);
imageView.setImageDrawable(bitmapDrawable);
// 结论:Bitmap是Drawable . Drawable不一定是Bitmap
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

小结

Bitmap: 简单化的Drawable, PNG 或JPEG图像.  
Drawable在内存占用和绘制速度这两个非常关键的点上胜过Bitmap

android Bitmap和Drawable的区别相关推荐

  1. android bitmap对比,Android Bitmap和Drawable的对比

    Android Bitmap和Drawable的对比 Bitmap - 称作位图,一般位图的文件格式后缀为bmp,当然编码器也有很多如RGB565.RGB888.作为一种逐像素的显示对象执行效率高,但 ...

  2. Bitmap 和Drawable 的区别

    Bitmap - 称作位图,一般位图的文件格式后缀为bmp,当然编码器也有很多如RGB565.RGB888.作为一种逐像素的显示对象执行效率高,但是缺点也很明显存储效率低.我们理解为一种存储对象比较好 ...

  3. (转)Android Bitmap 与 Drawable之间的转换

    转换Bitmap to Drawable Bitmap bitmap = new Bitmap (...); Drawable drawable = new BitmapDrawable(bitmap ...

  4. android bitmap 转drawable,android Drawable转换成Bitmap失败

    错误代码: 08-07 06:42:30.482 28497-28497/app.tianxiayou E/AndroidRuntime﹕ FATAL EXCEPTION: main Process: ...

  5. android bitmap转drawable

    BitmapDrawable bd = (BitmapDrawable) drawable;

  6. android mipmap的作用,Android 中的mipmap 和drawable的区别

    在android studio中我们创建项目后,在资源res文件中有drawable和mipmap两种存放图片的文件夹,在使用哪一个文件夹来存放图片,一直都很有争议: android 在 API le ...

  7. android bitmap转图片_Android 这些 Drawable 你都会用吗?

    在实际开发的过程中,除了广为人知的利用 StateListDrawable 设置按钮点击特效,我们有时可能会接到一些这样的需求,比如要求我们的头像显示成圆形或者圆角矩形,甚至要加上可变颜色的边框,或者 ...

  8. android bitmap drawable 互转

    引用:  http://www.android123.com.cn/kaifafaq/704.html 很多开发者表示,不知道Android的Drawable和Bitmap之间如何相关转换.下面And ...

  9. Android 中 资源文件图片转 Bitmap 和 Drawable 以及相互转换的方法

    Android 图片转换的方法总结: 一.Bitmap 转换成 Drawable 对 Bitmap 进行强制转换 Drawable drawable = new BitmapDrawable(bmp) ...

最新文章

  1. Cookie与Web Storage的区别
  2. vista任务栏透明_增加Windows Vista任务栏预览大小的赏金(付费!)
  3. swiper 滑动出现闪白
  4. onenote组织知识体系_我们的家人教给我们有关组织生活的知识
  5. 刷新iframe页面
  6. 亲密关系沟通-【唤起亲密】-在平淡关系中创造高质量沟通
  7. php7单独运行,如何让PHP 7运行更加神速
  8. 苏州大学在职研究生计算机专业,苏州大学在职研究生有哪些专业?
  9. java 多线程详细(转载)
  10. layui的富文本编辑器中图片的面积大小问题
  11. Python晦涩知识点
  12. [nginx]SSL: error:0B080074:x509 certificate routines:X509_check_private_key:key values mismatch
  13. 胡阳pyhton作业题--20150725
  14. 【Computer Graphics】向量投影
  15. Google巧妙发布Sky星空地图
  16. 【学习笔记】SQL数据库
  17. 6688.COM CEO 王峻涛致贺洪涛软件成立
  18. 凸包之Jarvis步进法
  19. 磁盘相关:磁盘IO、扇区、块与页
  20. 【Python零基础快速入门系列 | 03】AI数据容器底层核心之Python列表

热门文章

  1. 做更真实的实验!艾美捷Caspase-1活性分析试剂盒方案
  2. 删除计算机其他用户名和密码是什么情况,电脑用户名怎么删除_电脑用户名怎么取消...
  3. 图片识别 - TesseractOCR
  4. 游戏小程序之变化彩球
  5. 21cn 世纪龙 笔试
  6. STM32F407-高级定时器互补输出带死区控制功能
  7. 赶快收藏,关于PostgreSQL培训认证的问题都在这里。
  8. 贵州省未来二十年的投资机会的探讨1
  9. 8月初入的坑,刚推完主线。有点疑问,求dalao们帮忙看看。
  10. 利盟Lexmark E220 一体机驱动