Android自定义TextView实现跑马灯功能

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

未用自定义TextView实现跑马灯代码

    <Button   
            android:focusableInTouchMode="true"  
            android:singleLine="true"  
            android:ellipsize="marquee"  
            android:text="未使用自定义TextView的跑马灯效果"  
            android:textSize="18sp"  
            android:layout_width="fill_parent"  
            android:layout_height="wrap_content"  
            />  

下面使用自定义TextView实现跑马灯:

    package com.zebra.mobilesafe.ui;  
      
    import android.content.Context;  
    import android.util.AttributeSet;  
    import android.view.ViewDebug.ExportedProperty;  
    import android.widget.TextView;  
      
    /** 
     * 自定义一个TextView,是他天生就有焦点 
     * @author Administrator 
     * 
     */  
    public class FocusTextView extends TextView {  
      
        public FocusTextView(Context context,AttributeSet attrs,int defStyle) {  
            super(context,attrs,defStyle);  
            // Todo Auto-generated constructor stub  
        }  
      
        public FocusTextView(Context context,AttributeSet attrs) {  
            super(context,attrs);  
            // Todo Auto-generated constructor stub  
        }  
      
        public FocusTextView(Context context) {  
            super(context);  
            // Todo Auto-generated constructor stub  
        }  
      
        /** 
         * 欺骗Android系统,让当前没有焦点的判断为true,实现button效果 
         */  
        @Override  
        @ExportedProperty(category = "focus")  
        public boolean isFocused() {  
            // Todo Auto-generated method stub  
            return true;  
        }  
    }  

然后在android的xml文件中,引用自定义实现,路径要是类的绝对路径
    <com.zebra.mobilesafe.ui.FocusTextView  
        android:singleLine="true"  
        android:ellipsize="marquee"  
        android:text="使用自定义TextView的跑马灯效果"  
        android:textSize="18sp"  
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        />  

这样就可以在TextView中实现跑马灯效果了。

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

相关文章

Java中的String是不可变对象 在面向对象及函数编程语言中,不...
String, StringBuffer 和 StringBuilder 可变性 String不可变...
序列化:把对象转换为字节序列的过程称为对象的序列化. 反序...
先说结论,是对象!可以继续往下看 数组是不是对象 什么是对...
为什么浮点数 float 或 double 运算的时候会有精度丢失的风险...
面试题引入 这里引申出一个经典问题,看下面代码 Integer a ...