我创建了一个相对布局,当我触摸它时,它会改变按钮的位置。使用 OnTouchListener。但我希望当我释放按钮 (ACTION_UP) 时,它会在此操作之前转到它自己的位置。谁能帮帮我吗?
我的代码:(在创建里面)
...
this.relative_layout.setOnTouchListener(new OnTouchListener()
{
@Override
public boolean onTouch(View view, MotionEvent event)
{
// TODO: Implement this method
if(event.getAction() == event.ACTION_MOVE)
{
float x = event.getX();
float y = event.getY();
my_button.setX(x);
my_button.setY(y);
} else if(event.getAction() == event.ACTION_UP)
/* here's the issue that I'm
* asking for help about
* What to do to return the button position back
* Like it was? */
return true;
}
});
料青山看我应如是
相关分类