Titanic is a simple illusion obtained by applying an animated translation on the TextView TextPaint Shader's matrix.Less quick versionWhat is a Shader?A Shader is a class defining spans of colors. It is installed in a Paint. It's usually following a certain strategy, so you have Linear...
titanic = new Titanic(); titanic.start(myTitanicTextView);You may want to keep track of the titanic instance after the animation is started if you want to stop it.To stop it:titanic.cancel();How does it work?Quick versionTitanic is a simple illusion obtained by applying an animated ...