摘要: 转换Bitmap to Drawable //pattern 1 BitmapDrawable bitmapDrawable = (BitmapDrawable)bitmap; Drawable drawable = (Drawable)bitmapDrawable; //pattern 2 Bitmap bitmap = new Bitmap (...); Drawable drawable =... 阅读全文
posted @ 2011-08-18 10:16 健康小树 阅读(4291) 评论(0) 推荐(0)