Use colorDy in a Text Shadow in a TextView/EditText

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

added in API Level 1

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

1. Create an Android project, if you don't already have one.

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

3. In the main.xml file, add the code below. (This makes a teal shadow color.)
shadowDy without shadowColor and shadowRadius will do nothing.
A positive shadowDy will have the shadow below text.  (shadowDy = "5")
A negative shadowDy will have the shadow above the text. (shadowDy = "-5")

<TextView
        ...
       android:shadowDy = "5"
android:shadowColor = ""#008080""
       android:shadowRadius="1"
/>

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