TextView实现跑马灯效果,不用获取焦点

TextView实现跑马灯效果,不用获取焦点
[java]  view plain copy
  1. package com.androidbears.components;  
  2.   
  3. import android.content.Context;  
  4. import android.graphics.Rect;  
  5. import android.util.AttributeSet;  
  6. import android.widget.TextView;  
  7.   
  8. public class ScrollingTextView extends TextView {  
  9.   
  10.     public ScrollingTextView(Context context, AttributeSet attrs, int defStyle) {  
  11.         super(context, attrs, defStyle);  
  12.         init();  
  13.     }  
  14.   
  15.     public ScrollingTextView(Context context, AttributeSet attrs) {  
  16.         super(context, attrs);  
  17.         init();  
  18.     }  
  19.   
  20.     public ScrollingTextView(Context context) {  
  21.         super(context);  
  22.         init();  
  23.     }  
  24.     @Override  
  25.     protected void onFocusChanged(boolean focused, int direction, Rect previouslyFocusedRect) {  
  26.         if(focused)  
  27.             super.onFocusChanged(focused, direction, previouslyFocusedRect);  
  28.     }  
  29.   
  30.     @Override  
  31.     public void onWindowFocusChanged(boolean focused) {  
  32.         if(focused)  
  33.             super.onWindowFocusChanged(focused);  
  34.     }  
  35.   
  36.   
  37.     @Override  
  38.     public boolean isFocused() {  
  39.         return true;  
  40.     }  
  41.   
  42.     //add by laomo   
  43.     private void init(){  
  44.   setEllipsize(TruncateAt.MARQUEE);//对应android:ellipsize="marquee"  
  45.   setMarqueeRepeatLimit(-1);//对应android:marqueeRepeatLimit="marquee_forever"  
  46.   setSingleLine();//等价于setSingleLine(true)  
  47.     }  
  48. }  
然后在xml中用自定义的view
[html]  view plain copy
  1. <com.androidbears.components.ScrollingTextView  
  2.   android:layout_width="wrap_content"  
  3.   android:layout_height="wrap_content"  
  4.           android:text="@string/showmsg"/>  


from:http://blog.csdn.net/diyishuguang/article/details/12845007

你可能感兴趣的:(Android资源)