我有一个TextView,想要自动水平滚动。我知道可以使用文本视图的ellipsize属性来完成。请帮帮我。
答案 0 :(得分:1)
使用textView的ellipsize属性,如下所示
<TextView
android:id="@+id/mywidget"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:lines="1"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:textColor="#ff4500"
android:text="Simple application that shows how to use marquee, with a long text"/>