xml Android自动水平滚动TextView

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml Android自动水平滚动TextView相关的知识,希望对你有一定的参考价值。

findViewById(R.id.serviceColorCode).setSelected(true);
    <TextView
        android:text="Single-line text view that scrolls automatically if the text is too long to fit in the widget" 
        android:singleLine="true"
        android:ellipsize="marquee"
        android:marqueeRepeatLimit ="marquee_forever"
        android:focusable="true"
        android:focusableInTouchMode="true" 
        android:scrollHorizontally="true"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content"/>

以上是关于xml Android自动水平滚动TextView的主要内容,如果未能解决你的问题,请参考以下文章

android垂直TextView怎么能让它自动滚动

安卓自定义TextView实现自动滚动

Android中TextView如何实现水平和垂直滚动

如何以任何文本长度自动水平滚动文本视图?

Android 文字自动滚动(跑马灯)效果的两种实现方法[特别好使]

xml 自动滚动文本视图textview跑马灯效果