美文网首页
Android 跑马灯效果 自动滚动

Android 跑马灯效果 自动滚动

作者: hsw313 | 来源:发表于2019-11-13 10:09 被阅读0次

xml设置

<TextView  android:layout_width="200dp"
    android:layout_height="wrap_content"
    android:padding="10dp"
    android:background="@android:color/black"
    android:text="我是跑马灯、我是跑马灯、我是跑马灯"
    android:singleLine="true"
    android:ellipsize="marquee"
    android:scrollHorizontally="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:focusableInTouchMode="true"
    android:focusable="true"
    android:textColor="@android:color/white" />  

相关文章

网友评论

      本文标题:Android 跑马灯效果 自动滚动

      本文链接:https://www.haomeiwen.com/subject/qmxhictx.html