Android中的动画启动画面

时间:2014-01-28 13:21:22

标签: android animation splash-screen splash

大家好我想弄清楚如何在像Appy Geek应用程序这样的Android应用程序中实现动画启动画面。我尝试使用gif动画图片,但它不是android中的动画。然后我使用了android Drawable Animation。 Form Drawable Animation我能够创建一个动画,但为了做到这一点,我需要序列图片(逐帧)。我需要知道android中有没有其他技术可以做到这一点。

2 个答案:

答案 0 :(得分:0)

传统动画并不好,因为你需要一堆照片。您可以通过xml或java使用属性动画。 http://developer.android.com/guide/topics/graphics/prop-animation.html

答案 1 :(得分:0)

     anim.xml

    <?xml version="1.0" encoding="utf-8"?>
    <layoutAnimation xmlns:android="http://schemas.android.com/apk/res/android"
            android:delay="50%"
            android:animation="@anim/slide_top_to_bottom" />

   and set these to main layout::->

    android:layoutAnimation="@+anim/anim"