Hi all,
I'm wondering how to set shadow on text ?
I have this part I want to be shadowed...
I'm wondering how to set shadow on text ?
I have this part I want to be shadowed...
Code:
paint.setColor(Color.BLACK);
paint.setTextSize(55);
paint.setFakeBoldText(false);
paint.setShadowLayer(1, 0, 0, Color.BLACK); //This only shadows my whole view...
canvas.drawText(dateDayText, 50, 100, paint);