public void convertViewToBitmap(View view) {
//View view = getLayoutInflater().inflate(R.layout.test_layout, null);
view.setDrawingCacheEnabled(true);
view.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight());
view.buildDrawingCache();
bitmap = view.getDrawingCache(); Date date = new Date(System.currentTimeMillis()); Storage.writeBitmapFile("/sdcard/DCIM/UUCamera/test"+date.toLocaleString()+".jpeg", bitmap); // Testbt.setVisibility(View.VISIBLE);
view.destroyDrawingCache(); }

输入layout对应的vIEW然后进行操作,保存时应用了date,这样每张图片的保存名不同。

应该要注意的是view.measure和 view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight());对layout重新进行计算高度和宽度,所以layout务必要封装好,不然会出现移位

以下面layout为例

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
> <LinearLayout android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/screen"
android:background="@drawable/test_bg"
android:gravity="center_horizontal"
android:orientation="vertical"> <RelativeLayout
android:id="@+id/uupic"
android:layout_width="304dp"
android:layout_height="380dp"
android:layout_marginTop="90dp"
android:background="@drawable/test_photo_bg"
android:gravity="center"
> <ImageView
android:id="@+id/myuupic"
android:layout_width="264dp"
android:layout_height="352dp"/>
</RelativeLayout> <RelativeLayout
android:id="@+id/lovepic"
android:layout_height="116dp"
android:layout_width="match_parent"
> <TextView
android:id="@+id/agetext"
android:layout_width="120dp"
android:layout_height="116dp"
android:gravity="center"
android:textColor="#ffffff"
android:textSize="@dimen/age_text_size"
android:background="@drawable/test_age_bg"/> <ImageView
android:id="@+id/genderpic"
android:layout_width="44dp"
android:layout_height="44dp"
android:layout_toRightOf="@+id/agetext"
android:layout_alignParentBottom="true"
android:layout_marginLeft="-30dp"
android:scaleType="fitEnd"/>
<ImageView
android:id="@+id/testimg"
android:layout_width="222dp"
android:layout_height="86dp"
android:layout_toRightOf="@+id/agetext"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
</LinearLayout>
<!-- share and save layout --> <RelativeLayout
android:id="@+id/testbt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentBottom="true"
android:layout_marginLeft="24dp"
android:layout_marginRight="24dp"
android:layout_marginBottom="20dp"
> <Button
android:id="@+id/save"
android:layout_width="148dp"
android:layout_height="40dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="@drawable/testbtstyle"
android:text="保存"
android:textColor="#ff4c6c"
android:textSize="20sp" /> <Button
android:id="@+id/share"
android:layout_width="148dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:background="@drawable/testbtstyle"
android:text="分享"
android:textColor="#ff4c6c"
android:textSize="20sp" /> </RelativeLayout> </RelativeLayout>

封装成两部分上边显示,下边隐藏

引用时

mScreenShot = mTestView.findViewById(R.id.screen);

public void convertViewToBitmap(View view) {
//View view = getLayoutInflater().inflate(R.layout.test_layout, null);
view.setDrawingCacheEnabled(true);
view.measure(MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED));
view.layout(0, 0, view.getMeasuredWidth(), view.getMeasuredHeight());
view.buildDrawingCache();
bitmap = view.getDrawingCache(); Date date = new Date(System.currentTimeMillis()); Storage.writeBitmapFile("/sdcard/DCIM/UUCamera/test"+date.toLocaleString()+".jpeg", bitmap); // FileOutputStream fos = new FileOutputStream("/sdcard/DCIM/UUCamera/test.png");
//将Bitmap对象中的图像数据压缩成png格式的图像数据,并将这些数据保存在test.png文件中
// bitmap.compress(CompressFormat.PNG, 100, fos);
//关闭文件输出流
// Testbt.setVisibility(View.VISIBLE);
view.destroyDrawingCache();
if(!ispicsave()) {
return;
} } case R.id.save:
LogMan.e(TAG,"save..."); if(mScreenShot!=null){
// Testbt.setVisibility(View.INVISIBLE);
convertViewToBitmap(mScreenShot);
}
// Testbt.setVisibility(View.VISIBLE);
break;

android脚步---将layout和其输出一起保存成图片的更多相关文章

  1. android脚步---设置layout隐藏属性

    设置layout的属性,应用到android view的setVisibility 有三个值 visibility  VISIBLE, INVISIBLE, GONE. 可见的     不可见的    ...

  2. 【Android Studio安装部署系列】十六、Android studio在layout目录下新建子目录

    版权声明:本文为HaiyuKing原创文章,转载请注明出处! 概述 一般用于分类显示不同模块的layout布局文件. 在res/layout文件夹下创建子目录 res/layout鼠标右键——New— ...

  3. Android - HelloWorld的Layout内容

    Android - HelloWorld的Layout内容 本文地址: http://blog.csdn.net/caroline_wendy 作为最基础的Android程序, HelloWorld的 ...

  4. Android教程-02 在程序中输出Log

    视频教程,建议采用超清模式观看 在Android中一般都用Log输出日志,常见的有5个不同的级别 Log.v() Log.d() Log.i() Log.w() Log.e() 当然很多程序员还比较习 ...

  5. Android 高清加载巨图方案 拒绝压缩图片

    Android 高清加载巨图方案 拒绝压缩图片 转载请标明出处: http://blog.csdn.net/lmj623565791/article/details/49300989: 本文出自:[张 ...

  6. Android(java)学习笔记182:保存数据到SD卡 (附加:保存数据到内存)

    1. 如果我们要想读写数据到SD卡中,首先必须知道SD的路径: File file = new File(Environment.getExternalStorageDirectory()," ...

  7. Android(java)学习笔记238:多媒体之图片画画板案例

    1.首先我们编写布局文件activity_main.xml如下: <RelativeLayout xmlns:android="http://schemas.android.com/a ...

  8. Android——用户登陆及用户名和密码的保存

    Android——用户登陆及用户名和密码的保存   在之前的学习过程中已经将Android学习完了,但是在后面将近一年的时间里都没有进行过Android开发,所以对Android的所有的知识点又有点忘 ...

  9. Java乔晓松-android中调用系统拍照功能并显示拍照的图片

    android中调用系统拍照功能并显示拍照的图片 如果你是拍照完,利用onActivityResult获取data数据,把data数据转换成Bitmap数据,这样获取到的图片,是拍照的照片的缩略图 代 ...

随机推荐

  1. [VC++]用CTime类得到当前日期、时间、星期,格式化(详细讲解)

    用CTime类得到当前日期.时间.星期,格式化(详细讲解)2009/05/12 09:48 A.M.① 定义一个CTime类对象 CTime time; ② 得到当前时间 time = CTime:: ...

  2. 翻译-你必须知道的28个HTML5特征、窍门和技术

    摘自by zhangxinxu from http://www.zhangxinxu.com 本文地址:http://www.zhangxinxu.com/wordpress/?p=1058 前端的发 ...

  3. git变基--rebase

    变基过程: 两个分支 先考虑不用变基的合并: $ git checkout master $ git merge experiment 合并后: 如果变基:(以下为变基过程) $ git checko ...

  4. Mysql:输出到文件

    mysql>tee /home/a.txt mysql>show processlist; mysql>exit tee命令能重定向输出,同时屏幕会同步显示.

  5. TextBox只读时不能通过后台赋值取值解决办法

    给页面的TextBox设置ReadOnly="True"时,在后台代码中不能赋值取值,下边几种方法可以避免:  1.不设置ReadOnly,设置onfocus=this.blur( ...

  6. 戏说云计算之PaaS,IaaS,SaaS【转载】

    最近我们聊到“CRM系统PAAS化”,有些可能就不了解,到底什么是PAAS.云计算还有IaaS,SaaS概念,这三者之间有什么区别?今天智云通CRM系统小编用通俗易懂的例子跟大家分享Paas,IaaS ...

  7. libprotobuff8.so not found

    http://stackoverflow.com/questions/25518701/protobuf-cannot-find-shared-libraries

  8. MySql 加锁问题

    1.设置非自动提交 set autocommit=0;  这时候 for update才会起作用 2.一般用法 set autocommit=0;  for update(加锁)  ;  commit ...

  9. 【jsp 练习】 给定三角形三边判断是否能组成三角形及计算面积

    Test.java package package1; public class Test { double side1 = -1 , side2 = -1 , side3 = -1 , area = ...

  10. 【单源最短路】dijstra poj 1502

    #include <cstdio> #include <iostream> #include <stdlib.h> #include <memory.h> ...