Android工作室。动画移动 symbol/label
Android Studio. Animating a moving symbol/label
我正在尝试创建一个简单的程序,在
(x,y_const) 屏幕坐标然后动画移动
从坐标 (x,y_const) 到 (x+somevalue,y_const) 然后回到 (x,y_const).
除了帧动画之外,还有哪些其他方法可以做到这一点?
我假设我可以创建一个计时器并刷新标签的位置?
请帮忙。
谢谢!
如果您的目标 API 级别足够高,有很多关于 Property Animation. You can also just use the ViewPropertyAnimator Views 的教程:
例如:
View.animate().x(100).y(100).withEndAction(new Runnable(){
public void run(){
View.animate().x(0).y(0).start();
}
}).start();
我正在尝试创建一个简单的程序,在
(x,y_const) 屏幕坐标然后动画移动
从坐标 (x,y_const) 到 (x+somevalue,y_const) 然后回到 (x,y_const).
除了帧动画之外,还有哪些其他方法可以做到这一点? 我假设我可以创建一个计时器并刷新标签的位置?
请帮忙。 谢谢!
如果您的目标 API 级别足够高,有很多关于 Property Animation. You can also just use the ViewPropertyAnimator Views 的教程:
例如:
View.animate().x(100).y(100).withEndAction(new Runnable(){
public void run(){
View.animate().x(0).y(0).start();
}
}).start();