TextView adding gradient AND shadow - wing-tree/lock-screen GitHub Wiki

TextView adding gradient AND shadow

I had exactly the same problem. I managed to fix it by extending TextView and overriding onDraw method. Here is how it looks like

@Override
protected void onDraw(Canvas canvas) {
    // draw the shadow
    getPaint().setShadowLayer(1, 1, 1, 0xbf000000); // or whatever shadow you use
    getPaint().setShader(null);
    super.onDraw(canvas);

    // draw the gradient filled text
    getPaint().clearShadowLayer();
    getPaint().setShader(new LinearGradient(0, getHeight(), 0, 0, 0xffacacac, 0xffffffff, TileMode.CLAMP)); // or whatever gradient/shader you use
    super.onDraw(canvas);
}

However this method probably won't work if you want to use colors with transparency in your gradient.