gpt4 book ai didi

android - 将 View 与缩放的 ImageView 对齐

转载 作者:行者123 更新时间:2023-11-30 03:15:08 24 4
gpt4 key购买 nike

我经常遇到这个问题,我不相信如果不创建自定义布局就无法解决这个问题:

如何将 View 与缩放以匹配其父边界但保持纵横比(缩放类型不是 fitXY )的 ImageView 对齐。我假设如果您将 adjustViewBounds 设置为 true, View 边界将被调整以匹配图像的实际大小(“如果您希望 ImageView 调整其边界以保留其可绘制对象的纵横比,请将其设置为 true。 ”)。但事实并非如此。如果图像必须按比例放大或缩小以适合其边界,这并没有什么区别。

看看这个布局:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
>

<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:scaleType="fitCenter"
android:src="@drawable/square" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/imageView1"
android:layout_alignTop="@+id/imageView1"
android:text="@string/hello_world" />

</RelativeLayout>

此布局如下所示:enter image description here

如您所见,边界没有得到调整,并且 TextView 与不正确的边界对齐。我创建了一个自定义布局来创建适当的边界,但也许我遗漏了一些东西,应该可以使用标准布局功能......

编辑:澄清一下:我正在寻找一种将 TextView 与实际图像对齐的方法。这是给定示例中的红色方 block 。

最佳答案

好吧,三年过​​去了,您可能很久以前就明白了。但是当您指定 adjustviewBounds=true 时,您已经完成了一半。您只需要同时将 ImageView 布局宽度和高度更改为 wrap_content。

您的 TextView 正按照您的要求与 ImageView 对齐。如果您要为 ImageView 设置背景色,您会发现它与 TextView 占据相同的区域。只是实际图像按照您的要求在 View 中居中。

您可以根据需要继续使用 scaleType=fitCenter 或 centerInside。裁剪或拉伸(stretch)图像都不会,您的 TextView 将保持对齐。

关于android - 将 View 与缩放的 ImageView 对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20264689/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com