把一个view转换为Bitmap的方法(app界面截图)

2017-03-21  本文已影响0人  茶And狗狗

应用的地方,app中需要保存某个页面的截图,可以用到;

public static Bitmap convertViewToBitmap(View view){
      view.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
        view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight());
        view.buildDrawingCache();
        Bitmap bitmap = view.getDrawingCache();
     return bitmap;
}

引用:http://www.cnblogs.com/devinzhang/archive/2012/06/05/2536848.html

上一篇 下一篇

猜你喜欢

热点阅读