ImageView系列:ImageView会不会自动调整高度?

Posted zhangjin1120

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ImageView系列:ImageView会不会自动调整高度?相关的知识,希望对你有一定的参考价值。

  • 不同手机屏幕宽度不同,假设ImageView宽度铺满,高度自适应,然后scaleType为fitXY,那么这张图片是不是就会自适应了?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">

    <ImageView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ff0000"
        android:src="@drawable/circle"
        android:scaleType="fitXY"
        />

</RelativeLayout>

嗯,想多了。如下:

再加个属性android:adjustViewBounds="true",是想要的效果了。
vivo手机如下:

华为平板如下:

以上是关于ImageView系列:ImageView会不会自动调整高度?的主要内容,如果未能解决你的问题,请参考以下文章

保存在 ImageView 中时,从自定义相机获取图像会被拉伸

ImageView不会在RelativeLayout中包装内容

Android开发之ImageView播放GIF动画实例

Android UI系列-----ImageView的scaleType属性

ImageView 上的透明背景 EditText 不会显示光标

Android ImageView使用详解(系列教程三)