Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android TextView跑馬燈效果實現方法

Android TextView跑馬燈效果實現方法

編輯:關於Android編程

本文實例講述了Android TextView跑馬燈效果實現方法。分享給大家供大家參考,具體如下:

public class MyTextView extends TextView{
  public MyTextView(Context context, AttributeSet attrs) {
    super(context, attrs);
    // TODO Auto-generated constructor stub
  }
  public MyTextView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    // TODO Auto-generated constructor stub
  }
  public MyTextView(Context context) {
    super(context);
    // TODO Auto-generated constructor stub
  }
  @Override
  public boolean isFocused() {
    // TODO Auto-generated method stub
    return true;   //must be return true;
  }
}

在xml文件中:

<packagename.MyTextView android:id="@+id/my_textview"
android:layout_width="400px" android:layout_height="35px" 
android:singleLine="true" android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever" android:textSize="22sp"/>

更多關於Android控件相關內容感興趣的讀者可查看本站專題:《Android控件用法總結》

希望本文所述對大家Android程序設計有所幫助。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved