ImageView
作者:互联网
Glide
implementation 'com.github.bumptech.glide:glide:4.3.1' annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
主要属性
-
android:src设置图片资源
-
android:scaleType设置图片缩放类型
-
fitStart保持宽高比缩放图片,直到较长的边与Image的边长相等,缩放完成后将图片放在ImageView的左上角
-
fitCenter默认值,同上,缩放后放于中间
-
fitEnd同上,缩放后放于右下角
-
fitXY对图像的横纵方向进行独立缩放,使得该图片完全适用ImageView,但是图片的宽高比可能会发生改变
-
center保持原图大小,显示在ImageView的中心。当原图的size大于ImageView的size,超过部分裁剪处理
-
centerCrop保持宽高比缩放图片,直到完全覆盖ImageView,可能会出现图片显示不完全
-
centerInside保持宽高缩放图片,直到ImageView能够完全地显示图片
-
matrix不改变原图的大小,从ImageView的左上角开始绘制原图,原图超过ImageView的部分作裁剪处理
-
-
android:maxHeight最大高度
-
android:maxWidth最大宽度
-
android:adjustViewBounds调整View的界限
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<ImageView
android:src="@drawable/icon_btn"
android:layout_width="200dp"
android:layout_height="200dp"
android:scaleType="fitCenter"/>
<ImageView
android:src="@drawable/icon_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="400dp"
android:maxHeight="400dp"
android:adjustViewBounds="true"
android:scaleType="fitCenter"/>
</LinearLayout>
标签:原图,layout,缩放,ImageView,android,图片 来源: https://www.cnblogs.com/qiezi01/p/15155316.html