我编写了一个代码,用于在拖动按钮时移动按钮。我正在根据当前鼠标坐标更新按钮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;
}
}
答案 0 :(得分:1)
我没有用你的代码测试它,但我过去曾经遇到类似的事情。
getX()和getY()函数返回与Button相关的值。由于您正在更改onTouchListener中按钮的位置,因此您还可以更改getX()和getY()所基于的坐标系。
尝试使用getRawX()和getRawY()。这些函数独立于Button的位置,不应该给你交替的值。