【发布时间】:2020-10-28 19:37:49
【问题描述】:
我想要这样的动画:Calendar Animation
我想在日历上缩放动画并关注当前日期到中心。 我是 android 动画的新手,我做了一些缩放工作:
zoom_in.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:fillAfter="true">
<scale
android:duration="1000"
android:fromXScale="1"
android:fromYScale="1"
android:pivotX="50%"
android:pivotY="50%"
android:toXScale="2"
android:toYScale="2" />
</set>
但是使用它,它会将日历缩放到中心,但我希望当前日期在中心。 有人知道如何制作整个动画吗?任何帮助将不胜感激。
【问题讨论】:
标签: android animation android-animation zooming scaling