How to create animated background gradient like Instagram app?

后端 未结 1 823
渐次进展
渐次进展 2020-12-28 19:14

Below are screenshots of instagram app. The background keeps on transforming from one gradient to other very beautifully.

I want to know how can I achieve

相关标签:
1条回答
  • 2020-12-28 19:35

    Create a TransitionDrawable to change between two drawables that you use for the background.

    <?xml version="1.0" encoding="UTF-8"?>
    <transition xmlns:android="http://schemas.android.com/apk/res/android">
        <!-- use whatever drawables you want, gradients, shapes etc-->
        <item android:drawable="@drawable/start" />
        <item android:drawable="@drawable/end" />
    </transition>
    

    Transition Drawables in Android

    TransitionDrawable trans = (TransitionDrawable) myLayout.getBackground();
    trans.startTransition(2000);
    
    0 讨论(0)
提交回复
热议问题