helloworld10010 / mobility-container-view

可跟随手指移动的viewGroup

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mobility-container-view

Usage

<com.helloworld.mobility_view.MobilityContainerView
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:background="#fda"
        >
		<!--想移动的控件放它下边-->
        <Button
            android:id="@+id/btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Hello!"
            android:onClick="onClick"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            />
    </com.helloworld.mobility_view.MobilityContainerView>

About

可跟随手指移动的viewGroup


Languages

Language:Kotlin 100.0%