Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android Textview 常見效果

android Textview 常見效果

編輯:關於Android編程

1:跑馬燈的效果

android:singleLine="true"
android:ellipsize="marquee"
android:focusableInTouchMode="true"
android:focusable="true"
android:marqueeRepeatLimit="marquee_forever"

  • android:singleLine=true 表示使用單行文字,多行文字也就無所謂使用Marquee效果了。
  • android:marqueeRepeatLimit,設置走馬燈滾動的次數。
  • android:ellipsize,設置了文字過長時如何切斷文字,可以有none, start,middle, end, 如果使用走馬燈效果則設為marquee.
  • android:focusable,Android的缺省行為是在控件獲得Focus時才會顯示走馬燈效果

  • 2:超出幾行點點的效果:
     android:maxLines="2"
     android:ellipsize="end"


    3:自動鏈接的效果:
      android:autoLink="phone|email|map|web|all"



    2:超出幾行點點的效果: 第三方

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