码迷,mamicode.com
首页 > 移动开发 > 详细

Android 控件界面转成Bitmap

时间:2014-12-15 15:17:54      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   ar   color   sp   on   div   log   

方法一:

customView.setDrawingCacheEnabled(true);
Bitmap bitmap = Bitmap.createBitmap(customView.getDrawingCache());

方法二:

Bitmap bitmap = Bitmap.createBitmap(customView.getWidth(), customView.getHeight(), Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
customView.draw(canvas);

Android 控件界面转成Bitmap

标签:android   style   blog   ar   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/rfheh/p/4164817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!