实现文字重复平滑移动
Android程序中, 只有当控件获取到焦点时才可以动起来
跑马灯
android:marqueeRepeatLimit="marquee_forever"
省略号
android:ellipsize="marquee"
获取焦点
android:focusable="true"
在触摸模式下获取焦点
android:focusableInTouchMode="true"
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hello_world_marquee_forevermarquee_foreverhello_world_marquee_forevermarquee_forever"
android:marqueeRepeatLimit="marquee_forever"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:singleLine="true"/>