Android实现跑马灯效果的方法
程序员文章站
2023-12-03 13:14:52
本文实例讲述了android实现跑马灯效果的方法。分享给大家供大家参考。具体如下:
运行效果截图如下:
直接在布局里写代码就好了:
本文实例讲述了android实现跑马灯效果的方法。分享给大家供大家参考。具体如下:
运行效果截图如下:
直接在布局里写代码就好了:
<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>
主要是这几行:
android:singleline="true"
android:ellipsize="marquee"
android:focusable="true"
android:focusableintouchmode="true"
android:scrollhorizontally="true"
android:marqueerepeatlimit="marquee_forever"
希望本文所述对大家的android程序设计有所帮助。