TextView的跑馬燈效果(AS開發實戰第二章學習筆記)
阿新 • • 發佈:2018-01-22
color clas eat star log ble _for ellipsize ddl
TextView的跑馬燈效果
跑馬燈用到的屬性與方法說明
singleLine 指定文本是否單行顯示
ellipsize 指定文本超出範圍後的省略方式
focusable 指定是否獲得焦點,跑馬燈效果要求設置為true
focusableInTouchMode 指定在觸摸時是否獲得焦點,跑馬燈效果要求設置為true
省略方式的取值說明
start 省略號在開頭
middle 省略號在中間
end 省略號在末尾
marquee 跑馬燈顯示
另外,我還找到了一個marqueeRepeatLimit的屬性,其中可以用marquee_forever作為它的值,也可以用數字作為它的值
舉個例子:
<TextView
android:id
android:layout_width
android:layout_height
android:layout_marginTop
android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:focusable="true"
android:focusableInTouchMode="true"
android:textColor
android:textSize
android:text
/>
TextView的跑馬燈效果(AS開發實戰第二章學習筆記)