如何制作背景动画?

时间:2015-08-03 09:14:56

标签: android android-animation

我有LinearLayout,我想为它创建animation。我需要一些帮助来创建animation

这是我的背景:

<?xml version="1.0" encoding="utf-8"?>
<inset xmlns:android="http://schemas.android.com/apk/res/android"
    android:insetLeft="-2dp"
    android:insetRight="-2dp"
    android:insetTop="-2dp">
    <shape android:shape="rectangle">
        <stroke
            android:width="1.25dp"
            android:color="#ffffff" />
        <solid android:color="#00000000" />
    </shape>
</inset>

看起来像(black - ground, white and purpul - background):

enter image description here

但我想要这个:

enter image description here

animation开始绿线开始时,应该向两个方向拉伸

我试过了:

TransitionDrawable transition = (TransitionDrawable) emailBg.getBackground();
        transition.startTransition(5000);

但它不起作用

0 个答案:

没有答案