当前位置:网站首页>Use of MotionLayout
Use of MotionLayout
2022-08-04 07:32:00 【Mr_Tony】
一、前言
MotionLayoutCan manage the animation of motion tracks and controls in the app.因为是ConstraintLayout的子类,So many properties are andConstraintLayout一样的.This animation is compared to property animation、Frame-by-frame animation has more features,And it can also be expanded,并且可以和CoordinatorLayout进行配合使用.And it will be much simpler to use,Some animation effects are fully functionalMotionLayoutinstead of customizingView.Part of the work efficiency can be improved,The basic usage is recorded here,Do a simple understanding.The rest of the usage can be viewed in the official documentation at the end of the article
二、基本用法
需要添加依赖
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
First create a layout here,让里面的TextView做动画效果,注意其id
activity_montion.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.motion.widget.MotionLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" app:layoutDescription="@xml/scene_01" tools:context=".MotionActivity">
<TextView android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="标题" android:layout_marginTop="100dp" app:layout_constraintTop_toTopOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent"/>
</androidx.constraintlayout.motion.widget.MotionLayout>
创建res/xml/scene_01.xml,内容如下,pay attention to its movementidwith the above layout movementid保持一致
<?xml version="1.0" encoding="utf-8"?>
<MotionScene xmlns:android="http://schemas.android.com/apk/res/android" xmlns:motion="http://schemas.android.com/apk/res-auto">
<Transition motion:constraintSetStart="@+id/start" motion:constraintSetEnd="@+id/end" motion:duration="1000">
<OnSwipe motion:touchAnchorId="@+id/button" motion:touchAnchorSide="right" motion:dragDirection="dragRight" />
</Transition>
<ConstraintSet android:id="@+id/start">
<Constraint android:id="@+id/button" android:layout_width="64dp" android:layout_height="64dp" android:layout_marginStart="8dp" motion:layout_constraintBottom_toBottomOf="parent" motion:layout_constraintStart_toStartOf="parent" motion:layout_constraintTop_toTopOf="parent" />
</ConstraintSet>
<ConstraintSet android:id="@+id/end">
<Constraint android:id="@+id/button" android:layout_width="64dp" android:layout_height="64dp" android:layout_marginEnd="8dp" motion:layout_constraintBottom_toBottomOf="parent" motion:layout_constraintEnd_toEndOf="parent" motion:layout_constraintTop_toTopOf="parent" />
</ConstraintSet>
</MotionScene>
以下来自官方文档
请注意以下几点:
<Transition>包含运动的基本定义.
motion:constraintSetStart和motion:constraintSetEnd指的是运动的端点.这些端点在 MotionScene 后面的<ConstraintSet>元素中定义.
motion:duration指定完成运动所需的毫秒数.
<OnSwipe>Allows you to control movement with a touch.
motion:touchAnchorId指的是您可以滑动并拖动的视图.
motion:touchAnchorSide表示我们从右侧拖动视图.
motion:dragDirection表示拖动的进度方向.例如,motion:dragDirection="dragRight"表示当您向右拖动时,进度会增加.
<ConstraintSet>is where the various constraints that describe your movement are defined.在此示例中,We define one for each endpoint of the motionConstraintSet.These endpoints are centered vertically(通过app:layout_constraintTop_toTopOf="parent"和app:layout_constraintBottom_toBottomOf="parent").在水平方向上,The endpoints are on the far left and far right of the screen.
这里需要注意motion:touchAnchorId和Constraint中的android:idWith controls in motion in the layoutid保持一致
然后直接在Activity中加载布局,加载后,Gesture dragging the control will find an animation effect
三、参考链接
边栏推荐
猜你喜欢
随机推荐
秒杀系统设计
SQL去重的三种方法汇总
MySQL重置root密码
C语言实现-华为太空人手表
SQL存储过程详解
53个全球免费学术资源数据库整理,查资料写论文必备【开学必备】
Amazon亚马逊 Vendor Central Label详解
有趣的USB接口和颜色分类
【学习笔记】状压dp
小猫爪:AWR294x学习笔记02-AWR294x之DPM&IPC
unity 循环选择器
likeshop单商户高级版企业源码发布了新的版本1.8.1
Produce definition 产品与行业分析 勤于思考 善于总结 强于表达
90多款matlab工具箱打包放送
有人试过用NPGsql驱动连接openGauss开发应用的吗?
Centos通过Docker搭建MySQL的PXC集群
E-R图总结规范
idea使用@Autowired注解爆红原因及解决方法
打破千篇一律,DIY属于自己独一无二的商城
错误记录:TypeError: object() takes no parameters









