Sub SetTextShadow(pView As View, pRadius As Float, pDx As Float, pDy As Float, pColor As Int)
Dim ref As Reflector
ref.Target = pView
ref.RunMethod4("setShadowLayer", Array As Object(pRadius, pDx, pDy, pColor), Array As String("java.lang.float", "java.lang.float", "java.lang.float", "java.lang.int"))
End Sub
I think that adds shadow to the view and that's not working as expected..What I need is text shadow ..In the image attached there is a number inside dog picture..
In android with the given method it gives a black border with shadow effect there