1

我有一个 TextView 并希望自动水平滚动。我知道可以使用文本视图的 ellipsize 属性来完成。请帮助我。

4

1 回答 1

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"/>
于 2012-05-04T21:24:08.783 回答