我有一个Android项目,我想为其主要活动创建一个启动动画,我有一张照片就像一本书的第一页照片,我希望我的程序打开就像一本书,我知道我必须使用比例动画,但我不知道在动画中使用比例,我已经创建了一些比例动画,但是当它开始照片时只等待持续时间并完成,我的代码我改变了一些但它没有& #39;为我工作
<?xml version="1.0" encoding="utf-8"?>
<scale
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXScale="0.0"
android:fromYScale="0.0"
android:toXScale="0.0"
android:toYScale="0.0"
android:pivotX="0%"
android:pivotY="0%"
android:duration="2000"
/>
感谢您的帮助,我只想要包含打开页面动画的xml
文件。