gpt4 book ai didi

Android动画旋转 View 并在旋转后卡住它

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:47:35 25 4
gpt4 key购买 nike

我是 Android Animation 的新手想做一个基本的动画

  1. 将 View 旋转 180 度

    <set xmlns:android="http://schemas.android.com/apk/res/android">
    <rotate
    android:fromDegrees="0"
    android:toDegrees="180"
    android:pivotX="50%"
    android:pivotY="50%"
    android:duration="300"
    android:fillAfter="true"
    android:fillEnabled="true"
    />

但问题是动画完成后 View 返回到其原始位置我希望 View 在动画完成后旋转 180 度

我还添加了一个带有 onAnimationEndAnimationListener 来执行此操作,但它会出现一些故障

最佳答案

嘿,用这个....

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true"
android:fillEnabled="true">

<rotate
android:duration="1000"
android:fromDegrees="0"
android:pivotX="50%"
android:pivotY="50%"
android:toDegrees="180" />

</set>

关于Android动画旋转 View 并在旋转后卡住它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27577827/

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