我怎样才能 TextView 文本从一个地方飞到特定地方并反转?
Posted
技术标签:
【中文标题】我怎样才能 TextView 文本从一个地方飞到特定地方并反转?【英文标题】:How can I TextView text fly and reach from one place to particular place and also reverse? 【发布时间】:2016-12-30 06:38:12 【问题描述】:https://drive.google.com/file/d/0BziOuYi-lh6RUGMxc21sS0xFMDA/view?usp=sharing 我想在我的游戏应用程序中实现这种类型的动画。我怎样才能实现它,什么库对实现它有用?
【问题讨论】:
【参考方案1】:你可以使用ObjectAnimation;
private void startMove(View targetView, int targetX, int targetY)
ObjectAnimator.ofInt(targetView, "translationX", 0, targetX).start();
ObjectAnimator.ofInt(targetView, "translationY", 0, targetY).start();
startMove(numberView, 200, 200);
【讨论】:
ObjectAnimator.ofInt 不起作用,而是使用 ObjectAnimator.ofFloat(targetView, "translationX", 0, targetX).start();以上是关于我怎样才能 TextView 文本从一个地方飞到特定地方并反转?的主要内容,如果未能解决你的问题,请参考以下文章