android studio跑马灯效果
时间: 2023-04-20 19:02:38 浏览: 476
《Android开发视频教程》第四集:TextView实现跑马灯效果.zip
要在Android Studio中实现跑马灯效果,可以使用TextView和属性动画。首先,在布局文件中添加一个TextView,并设置它的宽度为match_parent,高度为wrap_content,然后设置它的单行显示和跑马灯效果:
```
<TextView
android:id="@+id/marquee_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:text="这是跑马灯效果的文字,可以自己修改"
android:focusable="true"
android:focusableInTouchMode="true" />
```
然后,在Java代码中获取TextView,并使用属性动画来实现跑马灯效果:
```
TextView marqueeText = findViewById(R.id.marquee_text);
marqueeText.setSelected(true);
ObjectAnimator animator = ObjectAnimator.ofFloat(marqueeText, "translationX", , -marqueeText.getWidth());
animator.setDuration(500);
animator.setRepeatCount(ValueAnimator.INFINITE);
animator.setRepeatMode(ValueAnimator.RESTART);
animator.start();
```
这里使用了ObjectAnimator来实现TextView的平移动画,将TextView从原来的位置平移至左侧,然后设置动画的持续时间、重复次数和重复模式,最后启动动画即可。
阅读全文