Use colorDx in a Text Shadow in a TextView/EditText

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

added in API Level 1

Horizontal 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.)
shadowDx without shadowColor and shadowRadius will do nothing.
A positive shadowDx will have the shadow on the right side of the text.  (shadowDx = "5")
A negative shadowDx will have the shadow on the left side of the text. (shadowDx = "-5")

<TextView
        ...
       android:shadowDx = "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:shadowDx
http://developer.android.com/reference/android/R.attr.html#shadowDx