实现效果: 鼠标拖动btn SSS,SSS在水平的layout上移动。 当鼠标抬起 响应UP事件。SSS会自动移动到距离其最近的Btn上,与其重合。即SSS如图只存在五个固定的显示位置。
SSS响应setOnTouchListener事件。
在MotionEvent.ACTION_UP事件中,调用TranslateAnimation动画效果,将其从UP事件位置移动到最近的btn所在位置。
即在UP事件中,响应函数:
private void setPosition() {
int positionPixel = (touchBtn.getLeft()+touchBtn.getRight())/2;
int positionIndex = (positionPixel)/btn[1].getWidth();
int toPosition = positionIndex*btn[1].getWidth()+touchBtn.getWidth()/2;
touchBtn.layout(positionIndex*btn[1].getWidth(), touchBtn.getTop(),positionIndex*btn[1].getWidth()+touchBtn.getWidth(),
touchBtn.getBottom());
MoveAction = new TranslateAnimation(positionPixel - toPosition,0,0,0);
MoveAction.setDuration(500);
touchBtn.startAnimation(MoveAction);
// touchBtn.invalidate();
}
动画效果,将其移动到最近位置上