gpt4 book ai didi

android - View.getX 和 getY 返回零

转载 作者:行者123 更新时间:2023-12-05 00:14:03 24 4
gpt4 key购买 nike

我有两个 ImageView。我想将一个移动到另一个之上。
当我尝试检索 ImageView 位置之一的值以将另一个移动到它时,我在 x 和 y 上都得到 0。
我尝试使用 getLeft/getTopgetX()/getY()getPositionOnScreen( );它们都返回 0。两个 View 都在同一约束布局内。

返回 0 的 ImageView 的 XML:

<ImageView
android:id="@+id/playerOneCard"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="64dp"
android:layout_marginStart="32dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toTopOf="@+id/imageView"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0"
app:srcCompat="@drawable/card" />

返回位置的代码:

int x = playerOneCardMove.getLeft();
int y = playerOneCardMove.getTop();

我还使用了以下内容:

int x = playerOneCardMove.getX();
int y = playerOneCardMove.getY();

和:

int[] imageCoordinates = new int[2];
playerOneCard.getLocationOnScreen(imageCoordinates);
int x = imageCoordinates[0];
int y = imageCoordinates[1];

执行onClick移动卡片的代码:

public void transitionPlayerOne() {
int x = playerOneCard.getLeft();
int y = playerOneCard.getTop();
TranslateAnimation animation =
new TranslateAnimation(Animation.ABSOLUTE, x, Animation.ABSOLUTE, y);
animation.setDuration(1000); // animation duration
animation.setFillAfter(true);
playerOneCardMove.startAnimation(animation); // start animation
}

最佳答案

您何时尝试获取 ImageView 的 X 和 Y?如果您直接在 onCreate(或当前放置 View 的其他地方)中执行此操作,则它们的 x 和 y 将为零,因为它们尚未被放置。

在这种情况下,您有 2 个选择:

  1. 使用 View.post { } 并在回调中执行您正在执行的操作。
  2. 像下面这样使用 OnGlobalLayoutListener
imageview.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
// do something about the view's x and y.
// also don't forget to remove this OnGlobalLayoutListener using
// removeOnGlobalLayoutListener in here.
}
});

关于android - View.getX 和 getY 返回零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49304872/

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