Text with gradient in Android - wing-tree/lock-screen GitHub Wiki
Text with gradient in Android
https://stackoverflow.com/a/5088137/15002852
TextView secondTextView = new TextView(this);
Shader textShader=new LinearGradient(0, 0, 0, 20,
new int[]{Color.GREEN,Color.BLUE},
new float[]{0, 1}, TileMode.CLAMP);
secondTextView.getPaint().setShader(textShader);