TextView跑马灯效果

来源:互联网 发布:学汉字软件 编辑:程序博客网 时间:2024/05/18 12:31

<TextView
       android:id="@+id/txt"
       android:layout_width="fill_parent"
       android:layout_height="wrap_content"
       android:ellipsize="marquee"
       android:focusable="true"
       android:focusableInTouchMode="true"
       android:marqueeRepeatLimit="marquee_forever"
       android:singleLine="true"

       android:text="显示内容"

       android:textSize="20sp"/>

0 0