TextView 跑马灯效果

来源:互联网 发布:centos gnome desktop 编辑:程序博客网 时间:2024/05/16 09:08
<TextView    android:id="@+id/textcontent"    android:layout_width="wrap_content"    android:layout_height="wrap_content"    android:ellipsize="marquee"    android:singleLine="true"    android:marqueeRepeatLimit ="marquee_forever"//滚动重复次数设置    android:scrollHorizontally = "true"    android:focusableInTouchMode="true" android:focusable="true"//需要获取焦点才能自动滚动    android:text="Hello World!" />
0 0