水平スクロールを備えた単純な TextView が必要です。そのために HorizontalScrollview を使用していることを知っており、テキストを継続的に自動スクロールしたいと考えています。それは可能ですか?
質問する
2751 次
2 に答える
4
TextView 属性で android:ellipsize="marquee" を使用するか、独自のアニメーションを実装することができます
于 2010-06-03T19:58:42.463 に答える
1
これは単純に XML を使用した自動スクロール テキスト ビューの小さな例であり、Java をコーディングする必要はありません。あなたがそれを好きになることを願っています! 自分で試してみてください。実行するのは非常に簡単です
これを試して :
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:singleLine="true"
android:scrollHorizontally="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit ="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:text="This is small example for auto scroll text view simply using XML, no need to code Java. Hope you like it! Try it on your own, it is very easy to perform" />
ここでは、テキストが自動的にスクロールされ、無限にスクロールされます。楽しむ!
于 2013-10-14T20:45:54.813 に答える