博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
View转化为bitmap
阅读量:4956 次
发布时间:2019-06-12

本文共 1092 字,大约阅读时间需要 3 分钟。

private Bitmap getViewBitmap(View v) {           v.clearFocus();           v.setPressed(false);              boolean willNotCache = v.willNotCacheDrawing();           v.setWillNotCacheDrawing(false);              // Reset the drawing cache background color to fully transparent           // for the duration of this operation           int color = v.getDrawingCacheBackgroundColor();           v.setDrawingCacheBackgroundColor(0);              if (color != 0) {               v.destroyDrawingCache();           }           v.buildDrawingCache();           Bitmap cacheBitmap = v.getDrawingCache();           if (cacheBitmap == null) {               Log.e("TTTTTTTTActivity", "failed getViewBitmap(" + v + ")", new RuntimeException());               return null;           }              Bitmap bitmap = Bitmap.createBitmap(cacheBitmap);              // Restore the view           v.destroyDrawingCache();           v.setWillNotCacheDrawing(willNotCache);           v.setDrawingCacheBackgroundColor(color);              return bitmap;       }

  

转载于:https://www.cnblogs.com/qgli/p/3173556.html

你可能感兴趣的文章
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
定宽320 缩放适配手机屏幕
查看>>
BZOJ 2120 数颜色 【带修改莫队】
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
Codeforces 40 E. Number Table
查看>>
CLR via C#(第3 版)
查看>>
java语法之final
查看>>
关于响应式布局
查看>>
详解ASP.Net 4中的aspnet_regsql.exe
查看>>
python 多进程和多线程的区别
查看>>
hdu1398
查看>>
[android] 网络断开的监听
查看>>
156.Binary Tree Upside Down
查看>>
MongoDB在windows下安装配置
查看>>
Upselling promotion stored procedure
查看>>