首先,使用TextView實現走馬燈形式的滾動顯示,只需要對其設定兩個屬性:
android:ellipsize="marquee"<br />android:marqueeRepeatLimit="marquee_forever"<br />
但是,TextView的滾動顯示,有一個前提,TextView需要必須處於focus狀態。 當TextView失去焦點的時候,TextView將會停止滾動。如何?無限滾動,當然也需要從焦點入手。當然,直接requestFocus()是不行的,這裡我使用了另外一個方法。觀察到textView有一個名為isFocused()的方法,文檔中的注釋是這樣的:
/**<br />* Returns true if this view has focus<br />*<br />* @return True if this view has focus, false otherwise.<br />*/
也就是說當TextView擁有焦點的時候會返回true.同時可以發現,TextView中很多地方都是直接調用這個方法作為判斷條件,最關鍵的,這個方法被聲明為public! ok, 實現方法已經初現端倪了!
做法是這樣:自訂一個OOXXTextView, 繼承自TextView, 同時override isFocused()方法,並使其傳回值為true, 範例如下:
public class AlwaysMarqueeTextView extends TextView{<br />public AlwaysMarqueeTextView(Context context) {<br />super(context);<br />}<br />public AlwaysMarqueeTextView(Context context, AttributeSet attrs) {<br /> super(context, attrs);<br />}<br />public AlwaysMarqueeTextView(Context context, AttributeSet attrs, int defStyle) {<br /> super(context, attrs, defStyle);<br />}</p><p>@Override<br />public boolean isFocused() {<br />return true;<br />}<br />}