当前位置: 编程技术>移动开发
本页文章导读:
▪Drawable和Bit地图的区别 Drawable和Bitmap的区别
Bitmap - 称作位图,一般位图的文件格式后缀为bmp,当然编码器也有很多如RGB565、RGB888。作为一种逐像素的显示对象执行效率高,但是缺点也很明显存储效率低。我.........
▪ 年轻的创业人,怎样才能比较容易地拿到风险投资和天使投资 年轻的创业者,怎样才能比较容易地拿到风险投资和天使投资?
对于互联网的团队:如果有想法,有团队,没产品,建议先勒紧裤腰带,开发产品。......
▪ sencha touch list 最后一项展示 sencha touch list 最后一项显示
用sencha touch的mvc模块显示list列表,前几天发现一个bug,就是在第一次加载的时候最后一个item不显示,第二次加载的时候就可以把所有的item显示出来,在.........
[1]Drawable和Bit地图的区别
来源: 互联网 发布时间: 2014-02-18
Drawable和Bitmap的区别
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
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
[2] 年轻的创业人,怎样才能比较容易地拿到风险投资和天使投资
来源: 互联网 发布时间: 2014-02-18
年轻的创业者,怎样才能比较容易地拿到风险投资和天使投资?
对于互联网的团队:
如果有想法,有执行力很强的团队,也有被用户验证了的产品,投资人会找你的。
有团队有产品但还没有用户,建议先小范围推广测试一下。
如果有想法,有团队,没产品,建议先勒紧裤腰带,开发产品。
如果核心团队搭建不齐,建议还是先积累一段时间再说,比如加入一个像百度、腾讯这样的公司。
如果想法都还没有成熟,建议不要梦想融到钱大干一把,先想想要不要创业,这不是一条轻松的道路!
[3] sencha touch list 最后一项展示
来源: 互联网 发布时间: 2014-02-18
sencha touch list 最后一项显示
用sencha touch的mvc模块显示list列表,前几天发现一个bug,就是在第一次加载的时候最后一个item不显示,第二次加载的时候就可以把所有的item显示出来,在网上看了一些优化方面的资料,发现dataview的效率比list高一些,就改用dataview,果然bug消失了。
用sencha touch的mvc模块显示list列表,前几天发现一个bug,就是在第一次加载的时候最后一个item不显示,第二次加载的时候就可以把所有的item显示出来,在网上看了一些优化方面的资料,发现dataview的效率比list高一些,就改用dataview,果然bug消失了。
最新技术文章: