gpt4 book ai didi

Android 忽略 maxWidth

转载 作者:太空宇宙 更新时间:2023-11-03 19:34:45 24 4
gpt4 key购买 nike

如果我尝试将 'android:maxWidth="400dp"' 添加到以下 ImageView,什么也没有发生...和想法?

<ImageView android:src="@drawable/content_background"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:contentDescription="@string/img_background" />

最佳答案

对于遇到此问题的任何其他人:我必须将其包装在 FrameLayout 中并将 maxWidth 应用于 FrameLayout 作为其 layout_width。看起来像:

<FrameLayout android:layout_width="800dp" android:layout_height="fill_parent" android:layout_centerInParent="true">
<ImageView android:src="@drawable/content_background"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:contentDescription="@string/img_background" />
</FrameLayout>

其中 800dp == ImageView 的有效“maxWidth”。这也不应该干扰较小的设备。

关于Android 忽略 maxWidth,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11159539/

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