歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

【Android】跑馬燈效果(文字滾動)

所謂跑馬燈效果就是當文字超過控件所能容納的空間時,在控件內滾動的效果。

要實現這樣的效果需要在布局文件中加上:

  1. Android:singleLine=”true”  
  2. android:ellipsize=”marquee”  
  3. android:focusableInTouchMode=”true”  
  4. android:focusable=”true”  
需要注意的是:layout_width=”"要寫成固定值,不能是wrap_content或者fill_parent,而且要比text長度長。另外還可以設置滾動的次數android:marqueeRepeatLimit=”";
android:marqueeRepeatLimit=”marquee_forever”表示一直滾動。

但是這種跑馬燈只有在控件獲得焦點時在能滾動,要想讓控件裡的內容一直滾動就要定制該控件,重寫裡面的三個方法:

  1. package cn.etzmico.marqueetest;  
  2.   
  3. import android.content.Context;  
  4. import android.graphics.Rect;  
  5. import android.util.AttributeSet;  
  6. import android.widget.Button;  
  7.   
  8. public class MarqueeButton extends Button {  
  9.   
  10. public MarqueeButton(Context context, AttributeSet attrs) {  
  11. super(context, attrs);  
  12. // TODO Auto-generated constructor stub   
  13. }  
  14. @Override  
  15. protected void onFocusChanged(boolean focused, int direction,  
  16. Rect previouslyFocusedRect) {  
  17. // TODO Auto-generated method stub   
  18. if(focused)  
  19. super.onFocusChanged(focused, direction, previouslyFocusedRect);  
  20. }  
  21.   
  22. @Override  
  23. public void onWindowFocusChanged(boolean hasWindowFocus) {  
  24. // TODO Auto-generated method stub   
  25. if(hasWindowFocus)  
  26. super.onWindowFocusChanged(hasWindowFocus);  
  27. }  
  28. @Override  
  29. public boolean isFocused() {  
  30. return true;  
  31. }  
  32. }  

下面就是要在布局文件裡使用這個控件了:

  1. <cn.easymobi.application.memorytest.MarqueeButton  
  2. android:layout_width=”216dip”  
  3. android:layout_height=”wrap_content”  
  4. android:id=”@+id/btSecond”  
  5. android:background=”@drawable/button_test2″  
  6. android:layout_marginTop=”15dip”  
  7. android:text=”@string/calculate”  
  8. android:ellipsize=”marquee”  
  9. android:gravity=”center”  
  10. android:textColor=”@color/white”  
  11. android:textStyle=”bold”  
  12. android:focusable=”true”  
  13. android:marqueeRepeatLimit=”marquee_forever”  
  14. android:focusableInTouchMode=”true”  
  15. android:scrollHorizontally=”true”  
  16. android:singleLine=”true”  
  17. android:paddingLeft=”50dip”  
  18. android:paddingRight=”50dip”  
  19. android:textSize=”20dip”  
  20. />  
Copyright © Linux教程網 All Rights Reserved