src和background属性的区别
background通常指的是背景,src通常指的是内容
当使用src填入图片时,是按照图片大小直接填充,并不会进行拉伸,而使用background填
入图片,则是会根据ImageView给定的宽度来拉伸。
centerCrop与centerInside
centerCrop:按横纵比缩放,直接完全覆盖整个ImageView
centerInside:按横纵比缩放,使得ImageView能够完全显示这个图片
fitXY:不按比例缩放,目标是把图片塞满整个view
matrix:从ImageView的左上角开始绘图,原图超过ImageView的部分做裁剪处理
adjustViewBounds设置图像缩放时是否按长宽比
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ab"/>
<ImageView
android:layout_width="400dp"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@mipmap/ab"/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:background="@mipmap/ab"/>
<ImageView
android:layout_width="400dp"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:src="@mipmap/ab"/>
</LinearLayout>
Android ImageView
最新推荐文章于 2024-08-15 17:42:26 发布