欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

TextView跑马灯效果

程序员文章站 2022-07-14 21:33:42
...

1,安卓原生的方法

<TextView
    android:layout_width="match_parent"
    android:layout_height="45dp"
    android:text="苹果公司今天在纽约股市收盘后发布了2016财年第三财季的财报,营收和利润不出意外的下滑,不过因为总营收和每股收益超过了市场预期,苹果股票在目前的盘后交易中上涨了7.21%,重回100美元以上"
    android:background="#009688"
    android:gravity="center_vertical"
    android:textSize="18dp"
    android:textColor="#000"
    android:textStyle="bold"
    android:singleLine="true"
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"/>

如果想一直循环,就加上

android:marqueeRepeatLimit=”marquee_forever”

2,框架

github地址

  • 1,效果图

TextView跑马灯效果

相关标签: TextView跑马