标签: android
我在我的应用程序中定义了一个圆形按钮,并希望将其设置为连续运动,这样每当它接触到边界(即墙壁)时,它就会被反射。 我目前正在使用以下代码将其移动到特定点。
button.animate().translationX(x).setDuration(5000).start(); button.animate().translationY(y).setDuration(5000).start();
但是,我希望将其设置为连续运动,以便在接触边界时反射。请帮忙。