Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 896 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 896 Bytes

AutoScrollLayout

跑马灯

    <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>