短視訊系統,Android 使用MotionLayout實現動畫效果

zhibo系統開發發表於2021-12-07

短視訊系統,Android 使用MotionLayout實現動畫效果實現的相關程式碼

MotionLayout最簡單的使用

首先,我們新建動畫開始時候的佈局activity_motion_layout3_start.xml

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="
    xmlns:app="
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:id="@+id/button"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:background="@color/colorAccent"
        android:text="Button"
        android:layout_marginLeft="16dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

新建一個動畫結束時候的佈局activity_motion_layout3_end.xml

<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="
    xmlns:app="
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:id="@+id/button"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:layout_marginRight="16dp"
        android:background="@color/colorAccent"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

然後,在Activity的xml中,使用MotionLayout,注意,這幾個佈局中的id需要相同

<androidx.constraintlayout.motion.widget.MotionLayout
    xmlns:android="
    xmlns:tools="
    xmlns:app="
    android:id="@+id/motionLayout"
    app:layoutDescription="@xml/activity_main_scene3"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:id="@+id/button"
        android:background="@color/colorAccent"
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:text="Button"
        tools:layout_editor_absoluteX="147dp"
        tools:layout_editor_absoluteY="230dp" />
</androidx.constraintlayout.motion.widget.MotionLayout>

這裡的重點app:layoutDescription,我們設定了activity_main_scene3.xml,這裡檔案就是具體設定動畫的地方了

<MotionScene xmlns:android="
    xmlns:app=">
    <Transition
        app:constraintSetEnd="@layout/activity_motion_layout3_end"
        app:constraintSetStart="@layout/activity_motion_layout3_start" >
        <OnSwipe
            app:dragDirection="dragRight"
            app:touchAnchorId="@id/button"
            app:touchAnchorSide="right" />
    </Transition>
</MotionScene>

以上就是 短視訊系統,Android 使用MotionLayout實現動畫效果實現的相關程式碼,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2846229/,如需轉載,請註明出處,否則將追究法律責任。

相關文章