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日的主要内容,如果未能解决你的问题,请参考以下文章