android TextView 跑馬燈效果

    <TextView
        android:text="1234567890qazxswedcvfrrtgbthndghsdfaldfhadnscn"
        android:singleLine="true"
        android:marqueeRepeatLimit="marquee_forever"
        android:ellipsize="marquee"
        android:focusableInTouchMode="true"
        android:scrollHorizontally="true"
        android:focusable="true"
        android:layout_width="100dp"
        android:layout_height="wrap_content" />


singleLine:單行

marqueeRepeatLimit:循環次數

ellipsize:要跑馬燈效果就設置爲 marquee

scrollHorizontally:滾動方向
focusable:獲取焦點





發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章