Android自訂TextView實現無限制跑馬燈效果

來源:互聯網
上載者:User

在做APP開發的時候,有些標題需要實現跑馬燈的效果,如果使用系統內建的TextView實現這樣的效果,只需要在TextView的屬性中添加如下代碼:

android:ellipsize="marquee"//跑馬燈效果
android:marqueeRepeatLimit="marquee_forever"//無限制不間斷顯示
android:singleLine="true"//單行顯示

但是這樣子有一個致命的缺點,就是這種狀態的跑馬燈只能在TextView處於焦點狀態的時候,它才會滾動,對於APP實際的開發應用中很不實用,因為它不可能一直都處於擷取焦點狀態。

為了是跑馬燈無論在什麼情況下都能跑起來,達到我們想要的效果,我們需要自訂一個TextView繼承TextView,並且重寫isFocuse()方法,讓它永遠返回true,這樣跑馬燈效果就能一直的跑起來了。

代碼如下:

package zm.marqueetextview;

import android.content.Context;
import android.util.AttributeSet;
import android.widget.TextView;

public class MarqueeTextView extends TextView {

    public MarqueeTextView(Context context) {
        super(context);
    }

    public MarqueeTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public MarqueeTextView(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
    }

    @Override
    public boolean isFocused() {
        return true;
    }
}

然後直接在布局檔案中引用即可:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:padding="15dp">

    <zm.marqueetextview.MarqueeTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:marqueeRepeatLimit="marquee_forever"
        android:text="這是一個自訂的帶有跑馬燈效果的TextView這是一個自訂的帶有跑馬燈效果的TextView" />

</RelativeLayout>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.