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

android 跑马灯效果

程序员文章站 2022-07-14 21:33:54
...

项目地址:https://github.com/superTruth/AutoScrollLayout


android 跑马灯效果


<cn.supertruth.autoscrolllayout.AutoScrollLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <TextView
            android:text="1234567"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </cn.supertruth.autoscrolllayout.AutoScrollLayout>

    <cn.supertruth.autoscrolllayout.AutoScrollLayout
        android:layout_marginTop="20dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <View
            android:background="@android:color/holo_purple"
            android:layout_width="120dp"
            android:layout_height="60dp" />

    </cn.supertruth.autoscrolllayout.AutoScrollLayout>