• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Setting shadow on text?

Grendizer

Newbie
Hi all,

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);
 
Back
Top Bottom