如何在应用程序中制作Moto G Globe动画?

时间:2015-02-13 11:37:29

标签: android animation android-animation motorola

我们正在构建一个Android应用程序,在等待时代替闪屏,我想添加动画,就像Boot animation of Moto G一样。不完全相同,但将使用具有一些其他元素的globe。

所以我的问题是如何做到这一点?

非常感谢任何输入。

谢谢,

1 个答案:

答案 0 :(得分:0)

至于android ..你必须手动制作动画.. 对于xml animatiom-listres/drawable下的<?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"> <item android:drawable="@drawable/image1" android:duration="300" /> <item android:drawable="@drawable/image2" android:duration="300" /> <item android:drawable="@drawable/image3" android:duration="300" /> <item android:drawable="@drawable/image4" android:duration="300" /> 文件,然后添加项目并提供持续时间..

实施例:::::

android:oneshot="false"

imageview是一次又一次地重复动画..如果你不想再重复,那就让它成真

制作动画后

将其添加到{{1}} ..