12 2010 档案
android 处理图片资源
摘要:android在处理一写图片资源的时候,会进行一些类型的转换,现在有空整理一下: 1、Drawable → Bitmap Java代码 public static Bitmap drawableToBitmap(Drawable drawable) { Bitmap bitmap = Bitmap .createBitmap( drawable.getIntrinsicWidth(), dr... 阅读全文
posted @ 2010-12-24 11:44 四渡冰点 阅读(1173) 评论(0) 推荐(0)
kSOAP的运用
摘要:kSOAP的运用 1.概述 对于J2ME访问远端的web Service,除了官方标准JSR 172,我们还有两种选择: l kSOAP l Wingfoot Wingfoot是由Wingfoot Software(www.wingfoot.com)出品的一款J2ME(CLDC/CDC) SOAP1.1的轻量级实现方案。 kSOAP是Enhydra.org的一个开源作品,是EnhydraME项目的... 阅读全文
posted @ 2010-12-17 14:29 四渡冰点 阅读(938) 评论(0) 推荐(0)
Drable 与 Bitmap的常用的转换总结(转)
摘要:1.((BitmapDrawable)res.getDrawable(R.drawable.youricon)).getBitmap();2.Bitmap drawableToBitmap(Drawable drawable) { Bitmap bitmap = Bitmap .createBitmap( drawable.getIntrinsicWidth(), drawable.getIntr... 阅读全文
posted @ 2010-12-06 15:57 四渡冰点 阅读(550) 评论(0) 推荐(0)