android textview 跑马灯

Posted 奶霸000

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android textview 跑马灯相关的知识,希望对你有一定的参考价值。

<TextView
android:layout_width="match_parent"
android:layout_height="48dp"
android:ellipsize="marquee"
android:focusable="true"
android:singleLine="true"
android:textColor="#912CEE"
android:textSize="18sp"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:text="国际在线报道:主席此次对英国的访问是中英全面战略伙伴关系步入第二个十年、中欧建交40年之际,对英国进行的首次国事访问。这次访问全面推动了中英关系发展,开启了中英战略伙伴关系黄金时代。英国各界人士尤其是英国网民高度关注并积极评价主席的访英行程。"/>


即可实现跑马灯


  1. android:ellipsize=”start”—–省略号显示在开头 "...789"
  2. android:ellipsize=”end”——省略号显示在结尾  "123..."
  3. android:ellipsize=”middle”—-省略号显示在中间 "12...89"
  4. android:ellipsize=”marquee”–以横向滚动方式显示(需获得当前焦点时)
  5. android:ellipsize=”none”–--不做任何处理(会将要显示的文字截断)

以上是关于android textview 跑马灯的主要内容,如果未能解决你的问题,请参考以下文章

Android TextView设置跑马灯效果

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

android textview 跑马灯

android TextView跑马灯效果

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

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