我是靠谱客的博主 危机雪糕,最近开发中收集的这篇文章主要介绍Android 文字跑马灯效果,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

下面的内容是在xml布局文件中设置的TextView实现跑马灯效果的代码:

<TextView
        android:layout_width="100dip"
        android:layout_height="wrap_content"
        android:text="123456跑马灯789123" 
        android:singleLine="true"
        android:ellipsize="marquee"
        android:marqueeRepeatLimit="marquee_forever"
        android:focusableInTouchMode="true"
        android:focusable="true"

        android:scrollHorizontally="true"
        android:textColor="#ff0000"/>

解释:

android:singleLine=“true”和android:scrollHorizontally=“true”的效果都是一样的,即让文字单行显示。其中后者是指文字内容超出后自动变成水平滚动模式显示,其实也是单行显示的意思。

android:focusable=“true”和android:focusableInTouchMode=“true”必须有不然不会出现跑马灯效果。

最后

以上就是危机雪糕为你收集整理的Android 文字跑马灯效果的全部内容,希望文章能够帮你解决Android 文字跑马灯效果所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(54)

评论列表共有 0 条评论

立即
投稿
返回
顶部