Android中实现TextView跑马灯

4
5
6
7
8
9
10
11
12
13
14
15
16
17
< TextView
android:id = "@+id/menu_desc"
android:layout_width = "300dip"
android:layout_height = "wrap_content"
android:text = "温馨提示:左右滑动更改菜单,点击进入"
android:textColor = "@color/white"
android:textSize = "22dip"
android:singleLine = "true"
android:ellipsize = "marquee"
android:focusable = "true"
android:focusableInTouchMode = "true"
android:scrollHorizontally = "true"
android:marqueeRepeatLimit = "marquee_forever"
android:layout_centerHorizontal = "true"
android:layout_centerVertical = "true"
>
</ TextView >

猜你喜欢

转载自blog.csdn.net/zjy_android/article/details/79484049