Android TextView 跑马灯效果 - 2018年6月19日

Posted 风之旅人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android TextView 跑马灯效果 - 2018年6月19日相关的知识,希望对你有一定的参考价值。

 

第一步在布局中添加加粗部分代码:

<TextView
                android:id="@+id/tv_company"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:ellipsize="marquee"
                android:marqueeRepeatLimit="marquee_forever"
                android:singleLine="true"
                android:textColor="@color/black_alpha80"
                android:text="蓝蓝的天上白云飘,白云下面马儿跑,挥动鞭儿响四方,百鸟儿齐飞翔" />

第二步在代码中:

tvCompany.setText(applyBean.getCompany());
tvCompany.setSelected(true); //注意这一项,没有的话是不生效的

 

Bingo!

 

以上是关于Android TextView 跑马灯效果 - 2018年6月19日的主要内容,如果未能解决你的问题,请参考以下文章

Android TextView设置跑马灯效果

android使用TextView实现跑马灯的效果

android TextView跑马灯效果

Android利用TextView制作跑马灯该效果

android TextView实现跑马灯效果(字体滚动)

android 怎样给一个由三个textview 组成的添加跑马灯效果