Android基于TextView實現跑馬燈效果
本文實例為大家分享了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都可呈現跑馬燈效果。
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
ScrollView與SeekBar綁定實現滑動時出現小滑塊效果
這篇文章主要為大家詳細介紹了ScrollView與SeekBar綁定實現滑動時出現小滑塊效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-10-10
淺析Flutter AbsorbPointer 與 IgnorePointer的區(qū)別
Flutter是Google一個新的用于構建跨平臺的手機App的SDK。這篇文章主要介紹了Flutter AbsorbPointer 與 IgnorePointer的區(qū)別,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-04-04
在ubuntu下編譯ijkplayer-android的方法
下面小編就為大家分享一篇在ubuntu下編譯ijkplayer-android的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-01-01

