How to convert View to Bitmap in android?

前端 未结 4 1614
南笙
南笙 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 01:12

    Use below code : just replace yourview value

    YourView view = (YourView )findViewById(R.id.yourViewId);
    
    view.setDrawingCacheEnabled(true);
    
    view.buildDrawingCache();
    
    Bitmap bm = view.getDrawingCache();
    

    Reference

提交回复
热议问题