Animate views background color switch-color with TransitionDrawable
public void setCardColorTran(View view) { ColorDrawable[] color = {new ColorDrawable(Color.BLUE), new ColorDrawable(Color.RED)}; TransitionDrawable trans = new TransitionDrawable(color); if(Build.VERSION.SDK_INT < android.os.Build.VERSION_CODES.JELLY_BEAN) { view.setBackgroundDrawable(trans); }else { view.setBackground(trans); } trans.startTransition(5000); }
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents