Use colorRadius in a Text Shadow in a TextView/EditText

How to Use colorRadius in a Text Shadow in a TextView/EditText

added in API Level 1

Radius of the shadow. Must be a positive floating point value. (1, 1.2, etc.)

1. Add a TextView in the main.xml file.

2. In the main.xml file, add the code below. (This makes a teal shadow color.)
shadowRadius without shadowColor will do nothing.
The bigger the number the wider the 'glow' look of the shadow around the text. shadowRadius is like the length of colored pixels around the text.

<TextView
        ...
android:shadowColor = ""#008080""
       android:shadowRadius="6"
/>

3. Compile and run!
Resources:
http://developer.android.com/reference/android/widget/TextView.html#attr_android:shadowRadius
http://developer.android.com/reference/android/R.attr.html#shadowRadius