android – ImageView显示图像顶部和底部的空白区域

前端之家收集整理的这篇文章主要介绍了android – ImageView显示图像顶部和底部的空白区域前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 android布局中添加图像.顶部和底部的图像中没有空白区域,但是当我在imageView中添加图像时,它会在图像的顶部和底部显示空白区域.
因此,如果我想在图像和textview之间的图像空间下方立即添加textview.

我不明白为什么imageview会在图像的顶部和底部显示空白区域.我还没有添加像android:padding等的东西.

<ImageView
    android:id="@+id/imageView3"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:src="@drawable/img1" />

解决方法

将这些属性添加到该ImageView中
android:adjustViewBounds="true"
android:cropToPadding="false"
android:scaleType="fitXY"
原文链接:https://www.f2er.com/android/313842.html

猜你在找的Android相关文章