gpt4 book ai didi

Android 覆盖在布局边界之外/之间

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:15:01 30 4
gpt4 key购买 nike

我必须添加一个叠加层 (ImageView),以便它稍微移动到包含布局的左边界的左侧。

enter image description here

执行此操作的最佳方法是什么?

尝试了一些简单的方法,比如将 ImageView 放在布局中并使用负边距

android:layout_marginLeft="-20dip"

这使得这个:

enter image description here

(更正:图片中的文字应该是 20dip 而不是 20px)

AbsoluteLayout 已弃用。有类似 z 顺序的东西吗?或者我该怎么办?

提前致谢。

编辑:我尝试改用相对布局。同样的效果。这是减少到最少的 xml:

<RelativeLayout  xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clipChildren="false"
android:paddingLeft="50dip"
>

<ImageView
android:id="@+id/myId"
android:layout_width="60dip"
android:layout_height="60dip"
android:layout_marginLeft="-30dip"
android:clipChildren="false"
android:src="@drawable/pic" />

</RelativeLayout>

结果 enter image description here

当包含布局具有小于屏幕而不是填充的背景图像时也会发生。

最佳答案

使用 RelativeLayout 而不是 LinearLayout(以允许重叠)并将其添加到 RelativeLayout 修复它:

android:clipToPadding="false"

关于Android 覆盖在布局边界之外/之间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10246726/

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