gpt4 book ai didi

android - adjustViewBounds 在 Android 布局文件中不起作用

转载 作者:行者123 更新时间:2023-11-30 04:01:35 24 4
gpt4 key购买 nike

我已经看过这个帖子了:ImageView adjustViewBounds not working但它不适用于我的情况。

本质上,adjustViewBounds 不起作用。让我们假设以下情况:

square_icon => 1000x1000
rectangle_icon => 400x100
device height => 1000

所以我想要发生的是垂直堆叠四个具有以下尺寸的图标:

square_icon = 400x400
rectangle_icon = 400x100
square_icon = 400x400
rectangle_icon = 400x100

但实际情况是 square_icon 并没有占据它能占据的所有空间……而 rectangle_icon 更像是 400x200 而不是 400x100?图像没有以不正确的纵横比进行缩放,只是在 View 中添加了空白空间(scalingType 决定空间是在顶部、底部还是两者)

<?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="match_parent"
android:orientation="vertical" >

<ImageView
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="1"
android:adjustViewBounds="true"
android:src="@drawable/square_icon" />

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/rectangle_icon" />

<ImageView
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="1"
android:adjustViewBounds="true"
android:src="@drawable/square_icon" />

<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/rectangle_icon" />

</LinearLayout>

最佳答案

对于那些感兴趣的人,我解决了这个问题,方法是使用权重明确指定矩形图标的高度...为每个方形图标分配了 4 的权重,为每个矩形图标分配了 1 的权重。花了我很长时间,但我终于想通了!

关于android - adjustViewBounds 在 Android 布局文件中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12418769/

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