Skip to content

zhangxiaofan918/MarqueeTextView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

MarqueeTextView

Android实现跑马灯效果

XML文件

<com.nick.demo.view.MarqueeTextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerVertical="true"
    android:ellipsize="marquee"
    android:marqueeRepeatLimit="marquee_forever"
    android:singleLine="true"
    android:text=""
    android:textColor="@android:color/darker_gray"
    android:textSize="15sp" />

说明

android:ellipsize="marquee" 跑马灯
android:marqueeRepeatLimit="marquee_forever" 设置重复滚动的次数
android:singleLine="true" 单行显示

效果图

Releases

No releases published

Packages

No packages published

Languages