简单实现TextVIew跑马灯效果

<TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="莫听穿林打叶声,何妨吟啸且徐行。竹杖芒鞋轻胜马,谁怕?一蓑烟雨任平生。 "
    android:textSize="22sp"
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:singleLine="true"
    />

猜你喜欢

转载自blog.csdn.net/qq_42809182/article/details/83927771