天天看點

android TextView跑馬燈效果實作

xml源碼如下:

<TextView
    android:text="START | lunch 20.00 | Dinner 60.00 | Travel 60.00 | Doctor 5000.00 | lunch 20.00 | Dinner 60.00 | Travel 60.00 | Doctor 5000.00 | END"
    android:id="@+id/MarqueeText" 
    android:layout_width="marth_parent"
    android:layout_height="wrap_content" 
    android:singleLine="true"
   android:ellipsize="marquee" 
   android:marqueeRepeatLimit="marquee_forever"
   android:scrollHorizontally="true" 
    android:paddingLeft="15dip" 
    android:paddingRight="15dip" 
    android:focusable="true" 
   android:focusableInTouchMode="true" 
    android:freezesText="true">

           

        如上面所示,粗體部分為必要的一些屬性,其次!!!,需要在代碼中添加:

   但是,使用過程可能還是會遇到效果沒有出現情況:

(1)、高度使用固定值,效果出不來!有遇到的可以補充下。

參考資源:http://stackoverflow.com/questions/3332924/textview-marquee-not-working