布局文件里的 写法 如下:
<TextView
android:layout_width="fill_parent"android:layout_height="wrap_content"
android:text="这是纯TextView的跑马灯这是纯TextView的跑马灯这是纯TextView的跑马灯"
android:background="#839320"
android:textColor="#000000"
android:textSize="20dp"
android:singleLine="true"
android:ellipsize="marquee"
android:focusableInTouchMode="true"
android:focusable="true"
android:marqueeRepeatLimit="marquee_forever"
/>
若要让TextView里的文本滚动,必须满足以下几个因素:
1、android:ellipsize=”marquee”
2、TextView必须单行显示,即内容必须超出TextView大小
3、TextView要获得焦点才能滚动