Android:如何使用透明BG显示动画?

时间:2014-02-17 12:48:15

标签: android flash animation

我想在透明活动上显示透明背景的动画。如何通过Android实现它?我想过闪存,但用户必须安装闪存,对吗?我更喜欢矢量图形而不是GIF。

提前多多感谢!

示例:

enter image description here

2 个答案:

答案 0 :(得分:1)

显示动画的最佳方式是将它们存储为PNG并为动画执行此类操作,将其放入可绘制文件夹中。:

<animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="false"> 
    <item android:drawable="@drawable/ant1" android:duration="100" /> 
    <item android:drawable="@drawable/ant2" android:duration="100" /> 
    <item android:drawable="@drawable/ant3" android:duration="100" /> 
    <item android:drawable="@drawable/ant2" android:duration="100" /> 
</animation-list>

如果要使用矢量图形,则必须手动切换图像。您可以查看svg-android,这是在Android中使用简单矢量图像的好方法。

答案 1 :(得分:1)

嘿,你这个图书馆的动画背景图片和设置主题Theme.Transparent活动...所以你可以实现你的要求这是链接可能有用... KenBurnsView