AI智能
改变未来

Android 设置文字水平滚动


布局文件:

<TextViewandroid:id=\"@+id/text\"android:layout_width=\"match_parent\"android:layout_height=\"wrap_content\"android:gravity=\"center_horizontal\"android:textSize=\"30dp\"android:text=\"文章列表\"android:maxEms=\"4\"android:marqueeRepeatLimit=\"marquee_forever\"android:ellipsize=\"marquee\"android:focusable=\"true\"android:focusableInTouchMode=\"true\"android:singleLine=\"true\"/>

android:maxEms=“4” //限制一行字数
android:marqueeRepeatLimit=“marquee_forever” //无限滚动
android:ellipsize=“marquee” //设置为\”滚动\”

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » Android 设置文字水平滚动