4

我正在尝试实现类似于BEMAnimationTypeStroke的东西,它可以在 iOS 库BEMCheckBox中找到。

我尝试使用可绘制的动画矢量来实现这一点,但我不知道如何将圆内的复选标记从 0 起点设置为最终位置。(圆圈可以是静态的,我正在寻找动画复选标记)。这是我为此尝试的实现:

drawable/vector_drawable_ic_check_circle_white_48px.xml

    <path
            android:name="check"
            android:fillColor="#FFFFFF"
            android:pathData="M37.1,13.6L18.4,32.3h1.7l-8.5-8.5L10,25.5l8.5,8.5l0.8,0.8l0.8-0.8l18.7-18.7L37.1,13.6L37.1,13.6z"/>
    <path
            android:name="circle"
            android:fillColor="#FFFFFF"
            android:pathData="M24,48c13.3,0,24-10.7,24-24S37.3,0,24,0S0,10.7,0,24S10.7,48,24,48L24,48z
M24,45.6
C12.1,45.6,2.4,35.9,2.4,24S12.1,2.4,24,2.4S45.6,12.1,45.6,24S35.9,45.6,24,45.6L24,45.6z"/>
</vector>

动画/transform.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <objectAnimator
            android:duration="1000"
            android:propertyName="fillColor"
            android:valueFrom="@color/transparent"
            android:valueTo="@color/white"/>
</set>

可绘制/动画.xml

<?xml version="1.0" encoding="utf-8"?>
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:drawable="@drawable/vector_drawable_ic_check_circle_white_48px">
    <target
            android:name="check"
            android:animation="@anim/change_color"/>
</animated-vector>

设置好布局后,我使用以下命令开始动画:

ImageView mCpuImageView = (ImageView) findViewById(R.id.animated_check);
Drawable drawable = mCpuImageView.getDrawable();
if (drawable instanceof Animatable) {
    ((Animatable) drawable).start();
}

谁能帮我这个?有没有更简单的方法来实现这一点(自定义视图或现有库)?

这个想法是我想在一个圆圈中有一个复选标记,并且我想为复选标记的路径设置动画。当它显示时,只有圆圈可见,然后为复选标记创建动画。如果其他自定义设置,比如同时为圆设置动画,复选标记动画很容易实现,那会更好,但起初我只想为复选标记设置动画。

LE: 最后我选择了通过自定义视图手动创建动画的方法。如果有人知道我如何通过矢量可绘制来实现这一点,那将是一个很好的开发实践。谢谢你。

4

5 回答 5

12

我一直在寻找相同的东西,这篇文章几乎解释了这一切。该帖子中的代码:

可绘制/check_mark.xml

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportHeight="24.0"
    android:viewportWidth="24.0">
    <group android:name="background">
        <path
            android:name="circle"
            android:fillColor="@color/colorPrimary"
            android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0" />
    </group>
    <group android:name="check">
        <path
            android:name="tick"
            android:pathData="M6,11 l0,0 l0,0"
            android:strokeColor="@color/colorAccent"
            android:strokeWidth="1" />
    </group>

</vector>

drawable-v21/animated_check.xml

<?xml version="1.0" encoding="utf-8"?>
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/check_mark">
    <target
        android:name="tick"
        android:animation="@anim/check_animation" />
</animated-vector>

动画/check_animation.xml

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator"
    android:ordering="sequentially"
    android:shareInterpolator="false">
    <!-- Step 1 -->
    <objectAnimator
        android:duration="@android:integer/config_shortAnimTime"
        android:propertyName="pathData"
        android:valueFrom="M6,11 l0,0 l0,0"
        android:valueTo="M6,11 l3.5,4 l0,0"
        android:valueType="pathType" />
    <!-- Step 2 -->
    <objectAnimator
        android:duration="@android:integer/config_shortAnimTime"
        android:propertyName="pathData"
        android:valueFrom="M6,11 l3.5,4 l0,0"
        android:valueTo="M6,11 l3.5,4 l8,-7"
        android:valueType="pathType" />
</set>

用法

布局 XML

<ImageView
    android:id="@+id/imageView"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:visibility="visible"
    app:srcCompat="@drawable/animated_check" />

Java 类

mImgCheck = (ImageView) findViewById(R.id.imageView);
((Animatable) mImgCheck.getDrawable()).start();
于 2017-04-10T04:45:00.383 回答
9

Lottie您可以使用Airbnb.

它具有大图标集和动画,可以使用两种 Android 开发语言轻松集成,即;JavaKotlin

这是您正在寻找的滴答动画的链接。

要使用此图标,您需要下载json此图标的文件并将其添加到您的assets文件夹中,然后按照文档中的说明进行操作。

于 2018-11-19T11:56:49.323 回答
0

这个解决方案写在一个 xml 文件中:

<?xml version="1.0" encoding="utf-8"?>
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:aapt="http://schemas.android.com/aapt"
    xmlns:tools="http://schemas.android.com/tools"
    tools:targetApi="lollipop">
    <aapt:attr name="android:drawable">
        <vector
            android:width="50dp"
            android:height="50dp"
            android:viewportWidth="24.0"
            android:viewportHeight="24.0">
            <group android:name="check">
                <path
                    android:name="done"
                    android:pathData="M6,11 l0,0 l0,0"
                    android:strokeWidth="1"
                    android:strokeColor="@color/black" />
            </group>

        </vector>
    </aapt:attr>
    <target android:name="done">
        <aapt:attr name="android:animation">
            <set
                android:interpolator="@android:anim/accelerate_interpolator"
                android:ordering="sequentially"
                android:shareInterpolator="false">
                <!-- Step 1 -->
                <objectAnimator
                    android:duration="@android:integer/config_shortAnimTime"
                    android:propertyName="pathData"
                    android:valueFrom="M6,11 l0,0 l0,0"
                    android:valueTo="M6,11 l3.5,4 l0,0"
                    android:valueType="pathType" />
                <!-- Step 2 -->
                <objectAnimator
                    android:duration="@android:integer/config_shortAnimTime"
                    android:propertyName="pathData"
                    android:valueFrom="M6,11 l3.5,4 l0,0"
                    android:valueTo="M6,11 l3.5,4 l8,-7"
                    android:valueType="pathType" />
            </set>
        </aapt:attr>
    </target>
于 2020-06-08T19:40:48.217 回答
0

复选标记创建的动画可以通过动画复选标记路径的trimPathEnd属性来实现(参见https://developer.android.com/reference/android/graphics/drawable/VectorDrawable.html)。该trimPathEnd属性的值表示结束应该是路径的百分比,修剪超出该百分比的所有内容。通过从 0 到 1 的动画trimPathEnd将显示从 0% 到 100% 的复选标记路径。

在下面的 AnimatedVectorDrawable 定义中,我们引用了一个名为 的动画trim_path

<?xml version="1.0" encoding="utf-8"?>
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:drawable="@drawable/vector_drawable_ic_check_circle_white_48px">
    <target
            android:name="check"
            android:animation="@anim/trim_path"/>
</animated-vector>

然后在 anim/trim_path.xml 中:

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
    <objectAnimator
            android:duration="1000"
            android:propertyName="trimPathEnd"
            android:valueFrom="0"
            android:valueTo="1"/>
</set>

这应该会生成一个 AnimatedVectorDrawable,它的复选标记从 0% 增长到 100%。trimPathEnd同样,您也可以在圆圈上制作动画。请注意,您可能需要复制圆圈路径,因此一个圆圈是灰色和静态的,另一个圆圈是蓝色的并且在顶部有动画。

于 2016-11-22T07:17:38.013 回答
-1

这个对我有用。只需按照上面@s-hunter 的xml 代码即可。在您的活动中修改代码。如下所示:

mImgCheck = (ImageView) findViewById(R.id.imageView);        
Drawable drawable = mImgCheck.getDrawable();
((Animatable) drawable).start();

您可以添加波纹背景以获得更好的外观。

于 2017-06-28T07:42:28.797 回答