Android新控件之MotionLayout 动画管理布局之I
2022-01-15 本文已影响0人
没有了遇见
效果图.gif
MotionLayout
是一种布局类型,可帮助您管理应用中的运动和微件动画。MotionLayout
是 ConstraintLayout
的子类,在其丰富的布局功能基础之上构建而成。作为 ConstraintLayout
库的一部分,MotionLayout
可用作支持库,并可向后兼容 API 级别 14。
ImageFilterView 是constraintlayout 2.0 以后新增加的一个图片处理的,继承于AppCompatImageView的ImageView,可以理解为ImageView的扩展子View.ImageFilterView继承ImageVIew扩展出一些图像处理的属性方法,.字面翻译是 图像过滤器视图
属性方法
<declare-styleable name="ImageFilterView">
<attr format="reference" name="altSrc"/> //为src图像提供可选图像,以允许交叉衰落
<attr format="float" name="saturation"/> //设置图像的饱和度<br>0=灰度,1=原始,2=超饱和
<attr format="float" name="brightness"/> //设置图像的亮度<br>0=黑色,1=原色,2=亮度的两倍
<attr format="float" name="warmth"/> //这将调整图像的外观色温<br>1=中性,2=温暖,5=寒冷
<attr format="float" name="contrast"/> //这将设置对比度。1=不变,0=灰色,2=高对比度
<attr format="float" name="crossfade"/> //设置两个图像之间的当前混合<br>0=src 1=altSrc图像
<attr format="dimension" name="round"/> //圆形圆形
<attr format="boolean" name="overlay"/>定义alt图像是在原始图像的顶部淡入淡入,还是将淡入淡入我被它迷住了。默认值为true。半透明对象设置为false
<attr format="float" name="roundPercent"/> 将拐角曲率半径设置为较小边的分数。对于正方形,1将生成一个圆
<attr format="float" name="imagePanX"/> //从中心设置平移 pan将平移设置为X,其中0居中
<attr format="float" name="imagePanY"/>//从中心设置平移 pan将平移设置为Y,其中0居中
<attr format="float" name="imageZoom"/> //缩放效果
<attr format="float" name="imageRotate"/> //旋转效果
</declare-styleable>
实现MotionLayout关联ImageFilterView 实现图像 缩放(内容缩放非尺寸缩放),调整饱和度,以及混合切换的效果
1.scene_image_filter.xml 资源代码
<?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:constraintSetEnd="@+id/end"
motion:constraintSetStart="@+id/start"
motion:duration="500">
<!-- 触摸属性 onTouchUp stop 不自动滑动-->
<OnSwipe
motion:dragDirection="dragDown"
motion:touchAnchorId="@+id/image"
motion:touchAnchorSide="bottom" />
</Transition>
<!-- 是定义描述您的运动的各种限制条件的位置 -->
<!-- 开始的View限制 -->
<ConstraintSet android:id="@+id/start">
<!-- 条件限制 -->
<Constraint
android:id="@+id/image"
android:layout_width="320dp"
android:layout_height="180dp"
android:layout_marginTop="20dp"
motion:layout_constraintEnd_toEndOf="parent"
motion:layout_constraintStart_toStartOf="parent"
motion:layout_constraintTop_toTopOf="parent">
<!-- 设置缩放 -->
<CustomAttribute
motion:attributeName="ImageZoom"
motion:customFloatValue="1.0" />
<!-- 设置两个图像之间的当前混合 -->
<CustomAttribute
motion:attributeName="Crossfade"
motion:customFloatValue="0" />
<!-- 设置饱和度 -->
<CustomAttribute
motion:attributeName="Saturation"
motion:customFloatValue="0" />
</Constraint>
</ConstraintSet>
<!-- 结束的View限制 -->
<ConstraintSet android:id="@+id/end">
<Constraint
android:id="@+id/image"
android:layout_width="320dp"
android:layout_height="180dp"
android:layout_marginBottom="20dp"
motion:layout_constraintBottom_toBottomOf="parent"
motion:layout_constraintEnd_toEndOf="parent"
motion:layout_constraintStart_toStartOf="parent">
<CustomAttribute
motion:attributeName="ImageZoom"
motion:customFloatValue="1.5" />
<CustomAttribute
motion:attributeName="Crossfade"
motion:customFloatValue="1" />
<CustomAttribute
motion:attributeName="Saturation"
motion:customFloatValue="1" />
</Constraint>
</ConstraintSet>
</MotionScene>
2.activity_mothion_image_filter.xml 资源代码
<?xml version="1.0" encoding="utf-8"?>
<!-- activity_main.xml -->
<androidx.constraintlayout.motion.widget.MotionLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/motionLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutDescription="@xml/scene_image_filter">
<!-- 移动的控件 -->
<androidx.constraintlayout.utils.widget.ImageFilterView
android:id="@+id/image"
android:src="@mipmap/roard"
app:altSrc="@mipmap/hoford"
android:layout_width="320dp"
android:layout_height="180dp"
/>
</androidx.constraintlayout.motion.widget.MotionLayout>
3.Activity 代码
package com.wu.material
import android.annotation.SuppressLint
import android.graphics.Rect
import android.os.Bundle
import android.widget.FrameLayout
import android.widget.RelativeLayout
import android.widget.TextView
import androidx.appcompat.app.AppCompatActivity
import androidx.constraintlayout.motion.widget.MotionLayout
import com.google.android.material.badge.BadgeDrawable
import com.google.android.material.badge.BadgeUtils
/**
* @author wkq
*
* @date 2021年11月04日 16:40
*
*@des 触摸平移动画
*
*/
class MothionImageFilterViewActivity :AppCompatActivity() {
@SuppressLint("RestrictedApi")
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_mothion_image_filter)
setShowLines()
}
/**
* 设置展示动画路径
*/
private fun setShowLines() {
var motionLayout= findViewById<MotionLayout>(R.id.motionLayout)
motionLayout.setDebugMode(MotionLayout.DEBUG_SHOW_PATH)
}
}
总结
ImageFilterView 一个继承于ImageView的图像变化处理的新控件值得你拥有,搭配MotionLayout效果更美好,美滋滋又学了一招.