把 view 转换成bitmap对象

View mViewInflater = LayoutInflater.from(this).inflate(R.layout.item_gallery,null);
            ImageView mgalleryImage = (ImageView) mViewInflater.findViewById(R.id.gallery_image);
            mgalleryImage.setimageResource(galleryBean.mgalleryIm);
            TextView mData_tv = (TextView) mViewInflater.findViewById(R.id.data_tv);
            mData_tv.setText(galleryBean.dataYear);
            TextView mIntegralNumber = (TextView) mViewInflater.findViewById(R.id.integralNumber_tv);
            mIntegralNumber.setText(galleryBean.integralNumber);
            //启用绘图缓存
            mViewInflater.setDrawingCacheEnabled(true);
            //调用下面这个方法非常重要,如果没有调用这个方法,得到的bitmap为null
            mViewInflater.measure(View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED),View.MeasureSpec.makeMeasureSpec(0,View.MeasureSpec.UNSPECIFIED));
            //这个方法也非常重要,设置布局的尺寸和位置
            LogUtils.e("测量后的尺寸:" + mViewInflater.getMeasuredWidth() + "....." + mViewInflater.getMeasuredHeight());
            mViewInflater.layout(0,0,mViewInflater.getMeasuredWidth(),mViewInflater.getMeasuredHeight());
//            mViewInflater.layout(0,MobileUtils.px2dp(mViewInflater.getMeasuredWidth()),//                    MobileUtils.px2dp(mViewInflater.getMeasuredHeight()));
            //获得绘图缓存中的Bitmap
            mViewInflater.buildDrawingCache();
            Bitmap mCacheBitmap = mViewInflater.getDrawingCache();
            Bitmap mBitmap = Bitmap.createBitmap(mCacheBitmap);

            if (mBitmap != null) {
                mgallery.add(mBitmap);
            }

相关文章

php输出xml格式字符串
J2ME Mobile 3D入门教程系列文章之一
XML轻松学习手册
XML入门的常见问题(一)
XML入门的常见问题(三)
XML轻松学习手册(2)XML概念