android – ImageView占用太多的垂直空间

前端之家收集整理的这篇文章主要介绍了android – ImageView占用太多的垂直空间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个带有 staggered gridview的项目,可以支持每个嵌套视图的不同高度,
<?xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/layout_border"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/imageView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/ic_launcher" />

        <TextView
            android:id="@+id/textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:background="@android:color/holo_blue_light" />
    </LinearLayout>

正如你在图片中看到的那样,对于宽图像,ImageView需要太多的垂直空间,
对于狭窄的图片来说,这似乎不是一个问题,
我该如何解决

解决方法

已经有一段时间了,但对于那些正在处理这类问题的人来说:android:adjustViewBounds =“true”应该可以解决问题!
原文链接:https://www.f2er.com/android/313686.html

猜你在找的Android相关文章