gpt4 book ai didi

android 矢量可绘制动画不起作用

转载 作者:行者123 更新时间:2023-11-30 00:16:34 25 4
gpt4 key购买 nike

如问题所述,我正在尝试为电话图标制作矢量可绘制动画。我的要求是显示电话动画,就像电话图标在移动一样,就是这样我尝试了来自不同网站的所有建议,但动画仍然无法正常工作我从过去两天开始尝试这个仍然没有发生。

以下文件是我的代码,如果有任何问题,请给我建议。

<vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
android:name="phone2"
android:pathData="M 6.62 10.79 L 6.62 10.79 C 7.353 10.057 8.087 9.323 8.82 8.59 C 9.1 8.31 9.18 7.92 9.07 7.57 C 8.7 6.45 8.5 5.25 8.5 4 C 8.5 3.725 8.387 3.475 8.206 3.294 C 8.025 3.112 7.775 3 7.5 3 C 6.333 3 5.167 3 4 3 C 3.45 3 3 3.45 3 4 C 3 6.348 3.476 8.584 4.336 10.618 C 5.196 12.652 6.441 14.483 7.979 16.021 C 9.517 17.559 11.348 18.804 13.382 19.664 C 15.416 20.524 17.652 21 20 21 C 20.55 21 21 20.55 21 20 C 21 18.837 21 17.673 21 16.51 C 21 15.96 20.55 15.51 20 15.51 C 18.76 15.51 17.55 15.31 16.43 14.94 C 16.08 14.82 15.68 14.91 15.41 15.18 C 14.677 15.913 13.943 16.647 13.21 17.38 C 12.267 16.897 11.38 16.318 10.564 15.656 C 9.747 14.994 9.001 14.249 8.34 13.434 C 7.678 12.619 7.1 11.733 6.62 10.79"
android:fillColor="#000"
android:strokeWidth="1"/>

这是我的Icon手机矢量文件。

    <?xml version="1.0" encoding="utf-8"?>
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:drawable="@drawable/phone2_icon"
tools:targetApi="lollipop">
<target
android:animation="@animator/animation_rotation"
android:name="animation"/>
</animated-vector>

这是动画矢量文件。

    <?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<objectAnimator
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="6000"
android:propertyName="rotation"
android:valueFrom="0"
android:valueTo="180"
android:valueType="floatType"/>
</set>

这是我的动画文件,放在 anim 文件夹中。

如果有人知道什么,请帮助我,我是第一次使用矢量绘图。

enter image description here

上图是电话图标,我希望它只是从 180 度旋转到正常方向。就像它会显示移动动画一样。

最佳答案

在 AnimatedVectorDrawable 文件中,您必须为“target”下的 android:name= 指定“phone2”。另外反对 'android:drawable="..."' 请给出文件名。如果“drawable”文件夹中的 VectorDrawable 文件的名称是“my_vector”,而“animator”文件夹中的动画文件的名称是“animation_rotation”,那么您的 AnimatedVectorDrawable 文件应该如下所示:

<animated-vector 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:drawable="@drawable/my_vector"
tools:targetApi="lollipop">

<target
android:animation="@animator/animation_rotation"
android:name="phone2"/>
</animated-vector>

关于android 矢量可绘制动画不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47152306/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com