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,框架
- 1,效果图
上一篇: R语言数据处理(2)
下一篇: Vue学习之跑马灯效果