1. 程式人生 > >簡單實現TextVIew跑馬燈效果

簡單實現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"
    />