`
wchinaw
  • 浏览: 24417 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

Android TextView跑马灯效果实现

 
阅读更多

今天下午在研究让TextView一行显示数据,多的数据用省略号来表示,实现了,然后又继续研究看怎么样能够使TextView实现跑马灯效果,这样用户可以完整的看到所有的数据。

 

  1.TextView一行显示数据,多的数据用省略号来表示

 

   <TextView android:layout_height="wrap_content"
	android:layout_width="200dip"
	android:id="@+id/textView1"
	android:text="" android:singleLine="true"
	android:ellipsize="end"
	>

 

 

 

 2.TextView实现跑马灯效果

<TextView android:layout_height="wrap_content"
android:layout_width="200dip"
android:id="@+id/textView1"
android:text="" android:singleLine="true"
android:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:focusableInTouchMode="true"
android:focusable="true">

 

0
6
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics