1. 程式人生 > >最簡單的跑馬燈

最簡單的跑馬燈

<TextView
    android:singleLine="true"
    android:ellipsize="marquee"
    android:text="大王讓我來巡山,尋了南山尋北山,大王讓我來巡山,尋了南山尋北山,大王讓我來巡山,尋了南山尋北山,大王讓我來巡山,尋了南山尋北山"
    android:background="@color/colorAccent"
    android:textSize="30sp"
    android:textColor="#ffffff"
    android:padding="10dp"
    android:focusableInTouchMode="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:focusable="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />