首页 > 代码库 > Android BitmapDrawable
Android BitmapDrawable
功能:显示缩略图,大小为40*40
//通过openRawResource获取一个inputStream对象 InputStream inputStream = getResources().openRawResource(R.drawable.test); //通过一个InputStream创建一个BitmapDrawable对象 BitmapDrawable drawable = new BitmapDrawable(inputStream); //通过BitmapDrawable对象获得Bitmap对象 Bitmap bitmap = drawable.getBitmap(); //利用Bitmap对象创建缩略图 bitmap = ThumbnailUtils.extractThumbnail(bitmap, 40, 40); //imageView 显示缩略图的ImageView imageView.setImageBitmap(bitmap);
功能:image2从image1中截取120*120大小后显示,截取起始坐标为(x,y)
BitmapDrawable bitmapDrawable = (BitmapDrawable) image1.getDrawable(); //获取第一个图片显示框中的位图 Bitmapbitmap = bitmapDrawable.getBitmap(); //显示图片的指定区域 image2.setImageBitmap(Bitmap.createBitmap(bitmap, x, y, 120, 120)); image2.setAlpha(alpha);
Android BitmapDrawable
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。