Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> [Android1.5]TextView跑馬燈效果

[Android1.5]TextView跑馬燈效果

編輯:Android開發實例

前言

  這個效果在兩周前搜索過,網上倒是有轉載,可恨的是轉載之後本人有測試過?!N多人都在後面跟帖沒效果! 後來沒辦法臨時用定時器來刷的。
 

 

文章

  1.  Ellipsize not working for textView inside custom listView

  2.  ScrollTextView - scrolling TextView for Android

 

正文

   本文得益於文章1的提示,雖然沒全看明白,但是看見代碼就復制下來然後測試,果然給我撞出來了- - #。
 

  一、效果圖

     

  二、實現代碼:

    <TextView android:layout_width="100px"
        android:layout_height="wrap_content"
        android:textColor="@android:color/white" 
        android:ellipsize="marquee" 
        android:focusable="true" 
        android:marqueeRepeatLimit="marquee_forever" 
        android:focusableInTouchMode="true" 
        android:scrollHorizontally="true"
        android:text="這才是真正的文字跑馬燈效果"
        >
    </TextView>

    代碼說明:

      a).  經測試與轉載文章區別主要在於這裡有設置android:focusableInTouchMode

      b).  測試環境為Android1.5、模擬器。

 

結束

  出來寫文章,即使是轉載也得負責。文章2為自定義控件,大家可以參考一下。

轉自:http://www.cnblogs.com/over140/archive/2010/08/20/1804770.html

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