把 view 转换成bitmap对象
发布时间:2020-12-16 08:36:17 所属栏目:百科 来源:网络整理
导读:View mViewInflater = LayoutInflater .from (this) .inflate (R .layout .item _gallery,null) ; ImageView mGalleryImage = (ImageView) mViewInflater .findViewById (R .id .gallery _image) ; mGalleryImage .setImageResource (galleryBean .mGalleryI
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);
}
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |