android:ellipsize实现跑马灯效果

来源:互联网 发布:数据库的物理结构 编辑:程序博客网 时间:2024/06/07 09:29

要实现标题跑马灯效果,找了好多资料,终于搞定,在这里mark一下:

        <TextView            android:layout_width="240dp"            android:layout_height="wrap_content"            android:gravity="center"            android:ellipsize="marquee"            android:marqueeRepeatLimit="marquee_forever"            android:clickable="true"            android:focusable="true"            android:focusableInTouchMode="true"            android:singleLine="true" />

详细介绍:
http://www.cnblogs.com/Gaojiecai/archive/2013/06/18/3142783.html

0 0