How to create animated background gradient like Instagram app?

后端 未结 1 825
渐次进展
渐次进展 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.

    
    
        
        
        
    
    

    Transition Drawables in Android

    TransitionDrawable trans = (TransitionDrawable) myLayout.getBackground();
    trans.startTransition(2000);
    

    0 讨论(0)
提交回复
热议问题