android TextView实现跑马灯效果

来源:互联网 发布:淘宝颜色选择图片尺寸 编辑:程序博客网 时间:2024/04/26 18:23
<TextView        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentBottom="true"        android:layout_gravity="center"        android:layout_marginLeft="15dip"        android:layout_marginRight="15dip"        android:ellipsize="marquee"        android:focusable="true"        android:focusableInTouchMode="true"        android:marqueeRepeatLimit="marquee_forever"        android:paddingBottom="15dip"        android:singleLine="true"        android:text="@string/hello_world"        android:textColor="@android:color/black" />


其实最重要的4个属性就是:

android:ellipsize="marquee"android:focusable="true"android:focusableInTouchMode="true"android:marqueeRepeatLimit="marquee_forever"