安卓TextView的跑马灯效果

Posted JsAko飞得更远

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了安卓TextView的跑马灯效果相关的知识,希望对你有一定的参考价值。

跑马灯效果的实现非常简单,可分为两步

1、定义一个View继承TextView,重写isFocused方法

package com.jsako.marquee;

import android.content.Context;
import android.util.AttributeSet;
import android.view.ViewDebug.ExportedProperty;
import android.widget.TextView;

public class MarqueeTextView extends TextView {

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

    }

    @Override
    @ExportedProperty(category = "focus")
    public boolean isFocused() {
        return true;
    }

}

2、在布局文件中声明

android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"

三个属性

<com.jsako.marquee.MarqueeTextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="marquee"
        android:focusable="true"
        android:focusableInTouchMode="true"
        android:singleLine="true"
        android:text="你好我是超级无敌大神啊实打实的执行擦拭的权威安装现场阿萨德请问阿斯顿啊自行车阿萨德请问阿萨德自行车阿斯顿全文阿萨德自行车" />

 

以上是关于安卓TextView的跑马灯效果的主要内容,如果未能解决你的问题,请参考以下文章

如何让TextView总是跑走马灯效果

android 怎样给一个由三个textview 组成的添加跑马灯效果

TextView常用属性设置

TextView常用属性设置

TextView常用属性设置

Android TextView设置跑马灯效果