<textview
android:layout_width="200px"
android:layout_height="wrap_content"
android:text="@string/hello"
android:singleLine="true" //设置为单行显示
android:ellipsize="marquee" //设置显示方式为跑马灯
android:marqueeRepeatLimit="marquee_forever" //设置循环方式为无限循环
android:focusable="true" //设置获取焦点
android:focusableInTouchMode="true" //已触摸方式获取焦点
/>
Android跑马灯
最新推荐文章于 2024-01-17 17:20:20 发布
本文介绍如何在Android应用中使用TextView实现跑马灯效果。通过设置TextView属性如singleLine、ellipsize、marqueeRepeatLimit等,使得文本能在屏幕上循环滚动显示。
摘要由CSDN通过智能技术生成