TextView 跑马灯

来源:互联网 发布:java 获取今天星期几 编辑:程序博客网 时间:2024/06/07 23:26
   <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:marqueeRepeatLimit="marquee_forever"
         />
0 0