gpt4 book ai didi

java - Android 设置 View 位置 - setY 与 setTop

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

我打算以编程方式移动按钮的位置。按钮处于相对布局。我研究过并发现我们可以使用 .setY().setTop()。看起来它们的工作原理应该相同。

但在我的例子中,.setTop() 根本没有改变位置,.setY() 只起作用。我不确定我误解了什么,但这对我来说很奇怪。

有没有人可以正确解释 setY()setTop()?有什么区别?

这是layout.xml:

<RelativeLayout 
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"/>
</RelativeLayout>

最佳答案

setY()setTop() 的主要区别是setY() 设置 View 的顶部偏移相对于可视区域,而 setTop() 设置 View 的顶部偏移量相对于其父级

来自Android documentation .

setY()

Sets the visual y position of this view, in pixels. This is equivalent to setting the translationY property to be the difference between the y value passed in and the current top property.

setTop()

Sets the top position of this view relative to its parent.

关于java - Android 设置 View 位置 - setY 与 setTop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39796333/

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