How to convert View to Bitmap in android?

前端 未结 4 1615
南笙
南笙 2020-12-21 00:41

I\'m using following line to convert view to bitmap in android.

view.setDrawingCacheEnabled(true);
Bitmap b= view.getDrawingCache(); 

I am

4条回答
  •  盖世英雄少女心
    2020-12-21 00:47

    This could work

    public static Bitmap getBitmapFromView(View view) {
       Bitmap returnedBitmap = Bitmap.createBitmap(view.getWidth(), view.getHeight(),Bitmap.Config.ARGB_8888);
       Canvas canvas = new Canvas(returnedBitmap);
       view.layout(0, 0, view.getLayoutParams().width, view.getLayoutParams().height);
       view.draw(canvas);
       return returnedBitmap;
    }
    

提交回复
热议问题