Android 中的翻译动画问题

发布于 2024-09-15 12:54:38 字数 550 浏览 1 评论 0原文

我是Android新手,我尝试制作翻译动画。

这是我的xml代码:(rail.xml)

<translate
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:fromXDelta="100%p"
 android:toXDelta="0"
 android:duration="4000" />

这是我的java代码:

final Animation animShow = AnimationUtils.loadAnimation( this, R.anim.rail);
for(int i = 1; i < 5; i++ ){

    animShow.setRepeatCount(i);

    textTV.setText("Hello Android!!");
    textTV.startAnimation(animShow);
}

我想问,如何更改每个动画重复的文本?

I am new to Android, I try to make translate animation.

This is my xml code: (rail.xml)

<translate
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:fromXDelta="100%p"
 android:toXDelta="0"
 android:duration="4000" />

and this is my java code:

final Animation animShow = AnimationUtils.loadAnimation( this, R.anim.rail);
for(int i = 1; i < 5; i++ ){

    animShow.setRepeatCount(i);

    textTV.setText("Hello Android!!");
    textTV.startAnimation(animShow);
}

I want to ask, how do I change the text of each animation repeat?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

◇流星雨 2024-09-22 12:54:38

通过 setAnimationListener() 注册 AnimationListener,并在侦听器的 onAnimationRepeat() 方法中更改文本。

Register an AnimationListener via setAnimationListener(), and change your text in the listener's onAnimationRepeat() method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文