加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

把 view 转换成bitmap对象

发布时间:2020-12-16 02:22:04 所属栏目:百科 来源:网络整理
导读: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);
            }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读