本文实例为大家分享了Android实现全屏截图或长截屏功能的具体代码,供大家参考,具体内容如下

全屏截图:

/*** 传入的activity是要截屏的activity*/public static Bitmap getViewBitmap(Activity activity) {  // View是你需要截图的View  View view = activity.getWindow().getDecorView();  //这两句必须写,否则getDrawingCache报空指针  view.setDrawingCacheEnabled(true);  view.buildDrawingCache();  Bitmap b1 = view.getDrawingCache();  // 获取状态栏高度  Rect frame = new Rect();  activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(frame);  int statusBarHeight = frame.top;  // 获取屏幕长和高  int width = activity.getResources().getDisplayMetrics().widthPixels;  int height = activity.getResources().getDisplayMetrics().heightPixels;  // 去掉标题栏  Bitmap b = Bitmap.createBitmap(b1, 0, statusBarHeight, width, height - statusBarHeight);  view.destroyDrawingCache();  return b;}

ScrollView或者ListView或者LinearLayout等ViewGroup的长截图:

public static Bitmap getViewGroupBitmap(ViewGroup viewGroup) {  //viewGroup的总高度  int h = 0;  Bitmap bitmap;   // 适用于ListView或RecyclerView等求高度  for (int i = 0; i < viewGroup.getChildCount(); i++) {   h += viewGroup.getChildAt(i).getHeight();  }  // 若viewGroup是ScrollView,那么他的直接子元素有id的话,如下所示:  // h = mLinearLayout.getHeight();  }  // 创建对应大小的bitmap(重点)  bitmap = Bitmap.createBitmap(scrollView.getWidth(), h, Bitmap.Config.ARGB_8888);  Canvas canvas = new Canvas(bitmap);  scrollView.draw(canvas);  return bitmap; }

总结:

1. 布局为ScrollView,ListView,RecyclerView等能滑动的,用for循环遍历子元素求实际高度。
ps:ScrollView由于只能有一个直接子元素,那么我们可以直接用他的子元素来求高度。
2. 布局为LinearLayout等ViewGroup,直接.getHeight()获取

注意:

1. getHeight(),getWidth()不能直接在avtivity生命周期中调用,因为activity尚未生成完毕之前,控件的长宽尚未测量,故所得皆为0
2. 用该方式实现长截屏需要注意背景色的问题,如果你的截图背景色出了问题,仔细检查XML文件,看看该背景色是否设置在你截屏的控件中

补充:

对于混合布局比如说:根RelativeLayout布局中有ViewGroup+RelativeLayout等子布局,可以分别测量他们的高度并生成bitmap对象,然后拼接在一起即可。

/*** 上下拼接两个Bitmap,* drawBitmap的参数:1.需要画的bitmap*     2.裁剪矩形,bitmap会被该矩形裁剪*     3.放置在canvas的位置矩形,bitmap会被放置在该矩形的位置上*     4.画笔*/public static Bitmap mergeBitmap_TB_My(Bitmap topBitmap, Bitmap bottomBitmap) {  int width = topBitmap.getWidth();  int height = topBitmap.getHeight() + bottomBitmap.getHeight();  Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);  Canvas canvas = new Canvas(bitmap);  Rect rectTop = new Rect(0, 0, width, topBitmap.getHeight());  Rect rectBottomRes = new Rect(0, 0, width, bottomBitmap.getHeight());  RectF rectBottomDes = new RectF(0, topBitmap.getHeight(), width, height);  canvas.drawBitmap(topBitmap, rectTop, rectTop, null);  canvas.drawBitmap(bottomBitmap, rectBottomRes, rectBottomDes, null);  return bitmap; }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

更多相关文章

  1. android 5.0新特性学习--视图阴影
  2. 一种巧妙获取Android状态栏高度的办法
  3. Android(安卓)shape中的padding无效
  4. Android-常用代码-36片段
  5. Android绘图系列(五)——绘制文本
  6. android之ScrollView里嵌套ListView(转)
  7. android取得系统高度,标题栏和状态高度
  8. react-native 中配置极光推送 Android关键详细的说明与截图代码
  9. Android(安卓)在OnCreate()中获取控件高度与宽度

随机推荐

  1. Android星级评分条控件RatingBar
  2. Android(安卓)自定义View(二)实现环形进度
  3. 【转】Android(安卓)性能测试
  4. Android(安卓)Studio下添加引用jar文件和
  5. OpenGL Mipmapping(Android(安卓)NDK)
  6. 来电归属地数据查询Java实现
  7. Android(安卓)Dex VS Class:实例图解剖析
  8. Android学习系列(34)
  9. 谷歌称Android(安卓)3.0系统可运行在任何
  10. Android(安卓)官方:Google Play 等服务仍