gpt4 book ai didi

android - ImageView Padding 属性未在 JellyBean 中正确显示

转载 作者:行者123 更新时间:2023-11-29 20:34:35 24 4
gpt4 key购买 nike

我有相同的 xml 代码,但是当我在 Lolipop 中运行它时,padding 属性工作正常,但在 JellyBean 中它也不起作用 在我的 ImageView 中,我正在使用 drawable 中的椭圆,它设置了背景属性和透明由 src 属性设置的 wifi 图像

<ImageView
android:id="@+id/imageView"
android:layout_width="42dp"
android:layout_height="42dp"
android:padding="8dp"
android:background="@drawable/icon_circle_primary"
android:src="@drawable/ic_info_black_48dp" />

这里是两个版本的截图

enter image description here

最佳答案

尝试将 ImageView 放入 FrameLayout 并放置 android:padding="8dp"android:background ="@drawable/icon_circle_primary" 属性到 FrameLayout

类似于:

<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="50"
android:background="@drawable/icon_circle_primary"
android:padding="8dp">

<ImageView
android:id="@+id/imageView"
android:layout_width="42dp"
android:layout_height="42dp"
android:src="@drawable/ic_info_black_48dp" />

</FrameLayout>

关于android - ImageView Padding 属性未在 JellyBean 中正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31503879/

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