请教一个 imageview 的setImageBitmap方法的问题
2015-04-18 · 知道合伙人数码行家
huanglenzhi
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:117538
获赞数:517184
长期从事计算机组装,维护,网络组建及管理。对计算机硬件、操作系统安装、典型网络设备具有详细认知。
向TA提问 私信TA
关注
展开全部
setImageBitmap 分别对应着 resource,就是图片有多大然后就显示多大,如果view过小,就会截取它的一部分
setBackgroundResource ,就是将图片拉伸填充满view
如果要你的哪团bitmap和view一直,你的view就要设定指定的大小,然后,根据大小放缩,
给模竖你个放缩的demo把
/旦缓大/缩放bitmap
TARGET_WIDTH
TARGET_HEIGHT 你自己定义
public static Bitmap zoomBitmap(Bitmap target)
{
int width = target.getWidth();
int height = target.getHeight();
Matrix matrix = new Matrix();
float scaleWidth = ((float)TARGET_WIDTH)/ width;
float scaleHeight = ((float)TARGET_HEIGHT)/ height;
matrix.postScale(scaleWidth, scaleHeight);
Bitmap result = Bitmap.createBitmap(target, 0, 0, width,
height, matrix, true);
return result;
}
setBackgroundResource ,就是将图片拉伸填充满view
如果要你的哪团bitmap和view一直,你的view就要设定指定的大小,然后,根据大小放缩,
给模竖你个放缩的demo把
/旦缓大/缩放bitmap
TARGET_WIDTH
TARGET_HEIGHT 你自己定义
public static Bitmap zoomBitmap(Bitmap target)
{
int width = target.getWidth();
int height = target.getHeight();
Matrix matrix = new Matrix();
float scaleWidth = ((float)TARGET_WIDTH)/ width;
float scaleHeight = ((float)TARGET_HEIGHT)/ height;
matrix.postScale(scaleWidth, scaleHeight);
Bitmap result = Bitmap.createBitmap(target, 0, 0, width,
height, matrix, true);
return result;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询