0

こんにちは、継続的にスクロールするテキスト ビューをアプリに追加する必要があります。

Web サイトからテキストを更新する必要があります。

それを行うためのコードを見つけることができるチュートリアルを教えてください。

事前にご協力いただきありがとうございます。

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