本文實例為大家分享了Android TextView實現跑馬燈效果的具體代碼,供大家參考,具體內容如下
當Layout中只有一個TextView需要實現跑馬燈效果時,操作如下。
在Layout的TextView配置文件中增加
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:singleLine="true"
以上四條屬性,即可實現跑馬燈效果。
當有多個TextView想實現跑馬燈效果時,實現起來稍微復雜一些。
首先新建一個類,繼承自TextView。
package com.example.project1;import android.content.Context;import android.util.AttributeSet;import android.view.ViewDebug.ExportedProperty;import android.widget.TextView;public class MyTextView extends TextView{ public MyTextView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); // TODO Auto-generated constructor stub } public MyTextView(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } public MyTextView(Context context) { super(context); // TODO Auto-generated constructor stub } @Override public boolean isFocused() { // TODO Auto-generatd method stub return true; }}重寫函數 isFocused(),使其始終return true。
將Layout文件中的TextView修改為com.example.project1.MyTextView,如下。
<com.example.project1.MyTextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:singleLine="true" android:text="@string/longText" /> <com.example.project1.MyTextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:ellipsize="marquee" android:focusable="true" android:focusableInTouchMode="true" android:singleLine="true" android:text="@string/longText" />
此時兩個TextView都可呈現跑馬燈效果。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林網。
新聞熱點
疑難解答