ImageView

ImageView的常用属性和方法

  • adjustViewBounds:设置为true时保持宽高比;但是如果在xml文件中设置了android:scaleType属性,那么scaleType的优先级更高,adjustViewBounds会失效。但是如果在Java代码中设置setAdjustViewBounds(true),则adjustViewBounds属性会生效;
       需要注意以下情况下:
    (1).当ImageView的layout_width和layout height都是固定值的时候;
    (2).当ImageView的layout
    width和layout_ height其中有一个属性固定值的时候;
    (3).当ImageView的layout_ width和layout_ height都是wrap_content的时候;
  • cropToPadding:设置为true时图像会被裁减;
  • maxHeight:设置最大高度;只有当设置了adjustViewBounds="true"的时候,maxWidth和maxHeight才会起作用;
  • maxWidth:设置最大宽度;
  • scaleType:设置图片填充的方式,默认值为fitCenter,可取值有center、centerCrop、centerInside、fitCenter、fitStart、fitEnd、fitXY、matrix;
  • src:设置显示的图片;
  • tint:渲染图片为指定颜色;

ImageView的常用场景