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 に答える