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" 

 

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

你可能感兴趣的:(textview)