0

嗨,我需要向我的应用程序添加一个连续滚动的文本视图。

我需要从网站更新文本。

谁能告诉我任何可以找到代码的教程。

提前感谢您的帮助。

4

2 回答 2

4

用这个:

        <TextView
            android:id="@+id/textId"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:ellipsize="marquee"
            android:fadingEdge="horizontal"
            android:lines="1"
            android:marqueeRepeatLimit="marquee_forever"
            android:scrollHorizontally="true"
            android:singleLine="true"
            android:text="Simple application that shows how to use marquee, with a long text"
            android:textColor="#ff4500" />

在活动中:

tv = (TextView) findViewById(R.id.textId);
tv.setSelected(true);

谢谢。

于 2012-12-28T09:28:19.827 回答
1

http://androidbears.stellarpc.net/?p=185

试试这个网站,它可能有用。

于 2013-01-02T05:06:00.670 回答