溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Android TextView Marquee的應(yīng)用實(shí)例詳解

發(fā)布時(shí)間:2020-09-04 20:47:11 來(lái)源:腳本之家 閱讀:219 作者:yhz61010 欄目:移動(dòng)開(kāi)發(fā)

Android TextView Marquee的應(yīng)用實(shí)例詳解

親測(cè)可能。直接上代碼。

Xml代碼

<TextView 
  android:id="@+id/toolbar_title" 
  android:layout_width="match_parent" 
  android:layout_height="wrap_content" 
  android:layout_gravity="center_vertical" 
  android:fadingEdge="none" 
  android:focusable="true" 
  android:focusableInTouchMode="true" 
  android:freezesText="true" 
  android:ellipsize="marquee" 
  android:marqueeRepeatLimit="marquee_forever" 
  android:singleLine="true" 
  android:scrollHorizontally="true" 
  android:textColor="#fff" 
  android:textSize="16sp" /> 

mToolbarTitle.setSelected(true); 

說(shuō)明:

XML 中以下幾行是必須的:

android:ellipsize="marquee" 
android:marqueeRepeatLimit="marquee_forever" 
android:singleLine="true" 

最后別忘了,JAVA 中還需要調(diào)用 TextView 的 setSelected(true) 方法。

特別注意:

目前發(fā)現(xiàn),android:singleLine="true" 這種寫(xiě)法需要已經(jīng)被廢棄了,但是目前只能這么寫(xiě) Marquee 才能生效。如果換成最新的寫(xiě)法 android:maxLines="1",你會(huì)發(fā)現(xiàn),Marquee 并不能滾動(dòng)。不知道為什么。如果有知道原因的,或者有更好的寫(xiě)法的,

以上就是Android TextView Marquee的實(shí)例詳解,如有疑問(wèn)請(qǐng)留言或者到本站社區(qū)交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI