CreateText background changing colors in sketchware





Background colour change code


ObjectAnimator animBgr = ObjectAnimator.ofArgb(text, "BackgroundColor", Color.CYAN, Color.GREEN, Color.MAGENTA, Color.BLUE);
animBgr.setDuration(5000);
AnimatorSet animSet = new AnimatorSet();
animSet.play(animBgr);
animSet.start();


Video Halp


Post a Comment

Previous Post Next Post