天天看點

android跑馬燈效果橫向,Android TextView 橫向滾動(跑馬燈效果)

Android TextView 中當文字比較多時希望它橫向滾動顯示,以下是一種親測可行的方法。

效果圖:

android跑馬燈效果橫向,Android TextView 橫向滾動(跑馬燈效果)

1.自己定義TextView,重寫isFocused()方法傳回true,讓自己定義TextView一直處于擷取焦點狀态。

package com.example.shen.marqueedemo;

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 defStyleAttr) {

super(context, attrs, defStyleAttr);

}

@Override

public boolean isFocused(){

return true;

}

}

2.布局檔案

android:sigleLine="true" //單行

android:ellipsize="marquee" //以跑馬燈的方式顯示(動畫橫向移動)

android:marqueeRepeatLimit="marquee_forever" //一直滾動

android:layout_width="match_parent"

android:layout_height="match_parent">

android:layout_width="200dp"

android:layout_height="wrap_content"

android:text="hello_world! hello_world! hello_world! "

android:layout_centerInParent="true"

android:ellipsize="marquee"

android:singleLine="true"

android:marqueeRepeatLimit="marquee_forever"/>