Android - shadow on text?
        Posted  
        
            by gazeebo
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by gazeebo
        
        
        
        Published on 2010-03-21T11:51:58Z
        Indexed on 
            2010/03/21
            14:01 UTC
        
        
        Read the original article
        Hit count: 206
        
android
Hi all,
I am wondering how to add shadow on text in android?
I have the following code which is applied on a bitmap and I wanted to be shadowed...
paint.setColor(Color.BLACK);
paint.setTextSize(55);
paint.setFakeBoldText(false);
paint.setShadowLayer(1, 0, 0, Color.BLACK); //This only shadows my whole view...
Thankful for any tips!
© Stack Overflow or respective owner