天天看點

Android:實作文字跑馬燈效果

在activity的xml檔案中的

<TextView>

标簽中設定以下屬性:

  1. 設定屬性

    android:singleLine=true

  2. android:ellipsize="marquee"

  3. 循環次數

    android:marqueeRepeatLimit

    ,當值為“-1”或者“marque_forever”時會一直跑。
  4. 設定獲得焦點狀态

    android:focusable="true"

    android:focusableInTouchMode="true"