欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android实现跑马灯效果的方法

程序员文章站 2023-11-12 09:57:46
本文实例讲述了android实现跑马灯效果的方法。分享给大家供大家参考。具体如下: 运行效果截图如下: 直接在布局里写代码就好了:

本文实例讲述了android实现跑马灯效果的方法。分享给大家供大家参考。具体如下:

运行效果截图如下:

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程序设计有所帮助。