gpt4 book ai didi

java - 在 ACTION_MOVE 上切换坐标

转载 作者:行者123 更新时间:2023-11-30 04:38:12 24 4
gpt4 key购买 nike

我编写了一个代码来在拖动按钮时移动它。我正在根据当前鼠标坐标更新按钮 X 和 Y 坐标,但是当我拖动按钮时,鼠标坐标值在低值和高值之间切换,即使我拖动得非常慢也是如此。

当我记录坐标时,值显示为:

(70, 24) - (15, 36) - (86, 51) - (20, 48) - (90, 54) - (32, 60) - (102, 66) ...

如您所见,它们在高值和低值之间切换,即使我在一个方向上非常缓慢地拖动也是如此。谁能告诉我为什么?

这是我的代码:

public class MyFrames extends Activity implements View.OnTouchListener {
public Button moveable;
// public TextView log;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

//changer = (Button) findViewById(R.id.btn_changer);
moveable = (Button) findViewById(R.id.btn_moveable);

moveable.setOnTouchListener(this);
}

@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
switch(event.getAction() & MotionEvent.ACTION_MASK) {
case MotionEvent.ACTION_MOVE:
int x = (int)event.getX();
int y = (int)event.getY();
int w = moveable.getMeasuredWidth();
int h = moveable.getMeasuredHeight();
moveable.layout( x, y, x + w, y + h);
Log.v("Moveable", "X = " + x + " Y = " + y + "\n");
return true;
}
return false;
}

}

最佳答案

我没有用你的代码测试过它,但我过去也遇到过类似的事情。

getX() 和 getY() 函数返回与您的 Button 相关的值。由于您正在更改按钮在 onTouchListener 中的位置,因此您也更改了 getX() 和 getY() 所基于的坐标系。

尝试改用 getRawX() 和 getRawY()。这些函数独立于 Button 的位置,不应为您提供交替值。

关于java - 在 ACTION_MOVE 上切换坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6464613/

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