当前位置: 代码迷 >> Android >> Android TextView 跑马灯成效
  详细解决方案

Android TextView 跑马灯成效

热度:92   发布时间:2016-05-01 19:20:09.0
Android TextView 跑马灯效果

Android TextView 跑马灯效果

?

		android:layout_width="fill_parent"		android:layout_height="wrap_content"		android:singleLine="true"		android:focusable="true" 		android:ellipsize="marquee" 		android:marqueeRepeatLimit="marquee_forever" 		android:focusableInTouchMode="true" 

?

说明:这样设置只有当内容一行显示不完全时,才会滚动。

  相关解决方案