こんにちは、継続的にスクロールするテキスト ビューをアプリに追加する必要があります。
Web サイトからテキストを更新する必要があります。
それを行うためのコードを見つけることができるチュートリアルを教えてください。
事前にご協力いただきありがとうございます。
これを使って:
<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);
ありがとう。
http://androidbears.stellarpc.net/?p=185
役に立つかもしれないこのウェブサイトを試してみてください。