Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android TextView 字體滾動效果

Android TextView 字體滾動效果

編輯:關於Android編程

Android TextView 字體滾動效果

實例代碼:

package com.godinsec.seland.ui.tools; 
 
import android.content.Context; 
import android.text.TextUtils.TruncateAt; 
import android.util.AttributeSet; 
import android.widget.TextView; 
 
public class MarqueTextView extends TextView { 
 
  public MarqueTextView(Context context, AttributeSet attrs, int defStyle) { 
    super(context, attrs, defStyle); 
    init(context); 
  } 
 
  public MarqueTextView(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    init(context); 
  } 
 
  public MarqueTextView(Context context) { 
    super(context); 
    init(context); 
  } 
 
  private void init(Context context) { 
     setEllipsize(TruncateAt.MARQUEE) ; 
  } 
 
  @Override 
  public boolean isFocused() { 
 
    return true; 
  } 
} 

Android  XML:

<com.godinsec.seland.ui.tools.MarqueTextView 
      android:id="@+id/tv_attention_name" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center_vertical" 
      android:layout_weight="1" 
       
      android:ellipsize="marquee" 
      android:focusable="true" 
      android:focusableInTouchMode="true" 
      android:marqueeRepeatLimit="marquee_forever" 
      android:singleLine="true" 
       
      android:text="XXXXXXXXXXXXXXXXXX" 
      android:textColor="@color/textcolor_black_b2" 
      android:textSize="@dimen/text_sp_s3" /> 

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

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